在我的struts.xml文件中,我正在从一个动作重定向到一个特定的jsp. Actualy这就是那里发生的事情.
<action name="redirectingToAction" class="sm.Login">
<result name="success" type="redirectAction">
<param name="actionName">redirectToJsp</param>
<param name="namespace">/</param>
<param name="page">somepage</param>
</result>
</action>
<action name="redirectToJsp">
<result >redirectedPage.jsp</result>
</action>
问题是当我重定向我正在传递的游侠出现在浏览器的地址栏中时. HTTP://本地主机:8084 / myaplication / redirectToJsp页= SomePage的
这就像在html get方法中一样.有没有办法无形地发送这个参数?喜欢在html post方法?
最佳答案 你可能想要使用UrlRewriteFilter,你可以在这里找到更多信息
http://code.google.com/p/urlrewritefilter/