Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在将我的 Struts1 应用程序迁移到 Struts2。
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>
您需要为动作类提供 settervalue1和getter 方法value2
value1
value2