Struts1中execute实现过滤控制

ActionRedirect actionRedirect =new ActionRedirect(mapping.findForward(""));
actionRedirect.addParameter(fieldName, valueObj);
return actionRedirect;
//或则返回 本类中的其他action方法

PS:struts2中则可以在struts.xml中的result的tpe属性去配置

<result name="redirect" type="redirect">
				<param name="namespace">/other</param>
				<param name="actionName">otherAction</param>
</result>

  

posted @ 2012-08-31 17:27  draem0507  阅读(240)  评论(0编辑  收藏  举报
View Code