English 中文(简体)
GateIn 3. 2 忽略动作URL 参数
原标题:GateIn 3.2 ignores actionURL parameters

我使用 GateIn 3.2.0.FINAL 加上 Tomcat 7 ( GateIn-3.2.0.Final-tomcat7.zip ),似乎忽略了 actionURL 中的参数。

我的控制器看起来是这样的:

@ActionMapping("search")
public void search(ActionRequest request) {
    LOG.info("doing search");
}

@ActionMapping("save")
public void save(ActionRequest request) {
    LOG.info("doing save");
}

我的JSP看起来是这样的:

<portlet:actionURL var="saveURL">
    <portlet:param name="javax.portlet.action" value="save"/>
</portlet:actionURL>

<form:form id="${ns}-save" action="${saveURL}" modelAttribute="createModel">
    <!-- omitted some html -->
    <input type="submit" value="submit"/>
</form:form>

当我按下提交按钮时, POST 应包含一个 javax.portlet. action=save , 但它没有。 没有包含名为 javax.portlet. action 的参数, 并且由于找不到匹配 ActionMapping 的方法, 因而丢弃了一个例外 。

HTML 中 form 标记生成的 URL 类似 :

/portal/classic/home/Permissions?navigationalstate=<gibberish>&amp;portal:componentId=<an UUID>&amp;interactionstate=<gibberish>&amp;portal:type=action&amp;portal:isSecure=false

如果我用火虫手动编辑 URL, 并添加 到它上面, 它就像一个符咒, 它在控制器中发现 save () 方法 。

现在,如果我在 jBos Portal 2.7.2 , 中,在 jBos Portal 2.7.2 中部署同样的 war , http://code_amp;javax.portlet. action=save 就包含在 URL 中。 GateIn 3.1.0.FINAL Tomcat 6 同样适用。

<强 > pS

我还尝试过另一个参数密钥 :

@ActionMapping({params = "myparam=save"})
public void save(ActionRequest request) {
    LOG.info("doing save");
}

...和:

<portlet:actionURL var="saveURL">
    <portlet:param name="myparam" value="save"/>
</portlet:actionURL>

GateIn 3.1 jBos Portal 2.7.2 中找到工作,但不在 GateIn 3.2 中找到工作。

它也与 GateIn 3.2.0.FINAL Tomcat 6 不合作。

<强 > EDIT

忘记提到做这个工作, 但我宁愿不使用它:

<form:form id="${ns}-save" action="${saveURL}&javax.portlet.action=save" modelAttribute="createModel">
   <!-- omitted -->
</form:form>
问题回答

试试这个

ActionMapping({params = "action=save"})
public void save(ActionRequest request) { 
    LOG.info("doing save"); 
}

<portlet:actionURL var="saveURL" escapeXml="false">
    <portlet:param name="action" value="save"/>
</portlet:actionURL>

action is default param name 和you must do other changes to use your own.

尝试在动作URL上设置 escapeXML="false"





相关问题
Convert typed-in Text to lowercase

I ve got an index.jsp with [snip] <% String name = request.getParameter("name"); String pass = request.getParameter("pass"); String globalname = "webeng"; String globalpass = "2009"; ...

session transfer issue from Tomcat to ASP.Net

I am using Tomcat to host JSP and using IIS 7.0 to host aspx (C# + .Net 3.5 + VSTS 2008), and I have some session transfer issue from JSP page to ASPX page. JSP page is in one domain and all other ...

Setting the default value in Struts2

I am setting the value(kind of default value) for a drop down select value from action class in a page(given below). When the page loads the value is beig displayed but the other elements of the ...

Evaluate dynamically constructed JSP at runtime

I have a requirement where in the JSP page itself is created by the user and stored in the database. When viewing results we need to render this JSP to the client, evaluating all tags inside this JSP. ...

How to Pack/Encrypt/Unpack/Decrypt a bunch of files in Java?

I m essentially trying to do the following on a Java/JSP-driven web site: User supplies a password Password is used to build a strongly-encrypted archive file (zip, or anything else) containing a ...

JSP exception - class not found (tomcat)

I m setting up an existing application on a new Tomcat 5.5 server connecting to a Postgres database (running on Debian Lenny). When I access it I get a series of stack traces with the following root ...

ArrayList to Table in JSP

I have an ArrayList and i am trying to display it in a table ..... ArrayList rows = .... ..... <table cellspacing="1" cellpadding="4" border="3"> <tr> <TH>...

热门标签