在将应用程序从 Struts 1 迁移到 Struts 2 时
在某些地方,根据请求参数,相同的操作类已用于不同类型的视图。
例如:如果createType
is 1 意味着需要附加一个参数,或者如果createType
is 2 意味着需要附加一些额外的参数,就像我需要使用ActionForward
.
struts-config.xml
:
<action path="/CommonAction" type="com.example.CommonAction" scope="request">
<forward name="viewAction" path = "/ViewAction.do"/>
</action>
动作类:
public class CreateAction extends Action
{
public ActionForward execute(ActionMapping m, ActionForm f, HttpServletRequest req, HttpServletResponse res) throws ServletException, Exception
{
String actionPath = m.findForward("viewAction").getPath();
String createType = req.getParameter("createType");
String params = "&action=view";
if("1".equals(createType)){
params = params + "&from=list";
}else if("2".equals(createType)){
params = params + "&from=detail&someParam=someValue";
}//,etc..
String actionUrl = actionPath+"?"+params;
return new ActionForward(actionUrl);
}
}
但是,我不能在 Struts 2 中做同样的事情。在 Struts 2 中是否有可能改变ActionForward
动态参数?