struts1.2中从一个action跳转到另外一个action的方法

在action的方法的最后,一般情况下都使用return mapping.findForward("xxxxx");

如果想跳转到另外一个action的某个页面可以这样:

ActionForward actionForward = new ActionForward();
actionForward.setPath("/customer/creditApprManage.do?method=searchCreditLevel&levelName=");
return actionForward;

 

注:如果需要重定向,只需要给actionForward加一个redirect属性,使用actionForward.setRedirect(true);

版权声明:本文为博主原创文章,未经博主允许不得转载。

posted @ 2013-02-21 21:30  一直向北  阅读(184)  评论(0编辑  收藏  举报