我正在将我的Struts1应用程序迁移到Struts2。
Struts2中是否有以下代码的替代方法,我在我的Action类中使用它。
String path = mapping.findForward("failurePath").getPath();
new ActionForward(path);
答案 0 :(得分:1)
您可以直接在struts.xml中使用
<result name="resultName" type="redirect" >failurePath.action?param1=${value1}¶m2={value2}</result>
您需要为value1
和value2
动作类设置setter和getter方法