1

我正在将我的 Struts1 应用程序迁移到 Struts2。

Struts2 中的以下代码是否有任何替代方法,我在我的 Action 类中使用它。

String path = mapping.findForward("failurePath").getPath();
new ActionForward(path);
4

1 回答 1

1

可以直接在struts.xml中使用

<result name="resultName" type="redirect" >failurePath.action?param1=${value1}&param2={value2}</result>

您需要为动作类提供 settervalue1和getter 方法value2

于 2013-05-13T13:27:46.237 回答