我將我的Struts1應用程序遷移到Struts2。在Struts 2中處理ActionForward
是否有在Struts2下面的代碼任何替代,我在我的Action類用這個。
String path = mapping.findForward("failurePath").getPath();
new ActionForward(path);
我將我的Struts1應用程序遷移到Struts2。在Struts 2中處理ActionForward
是否有在Struts2下面的代碼任何替代,我在我的Action類用這個。
String path = mapping.findForward("failurePath").getPath();
new ActionForward(path);
可以在struts.xml中直接使用
<result name="resultName" type="redirect" >failurePath.action?param1=${value1}¶m2={value2}</result>
您需要爲value1
和value2
OIN動作類
對於您所使用的目的,這struts1的代碼setter和getter方法 – PSR 2013-05-13 13:24:52
重定向到動作類下面。 '' –
john
2013-05-13 13:26:54
轉發不是重定向,如果您希望替代方法更新您的問題。 – 2013-05-13 20:20:58