欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  技术分享

struts2 重定向(源代码下载)

程序员文章站 2022-03-01 17:47:26
...

struts2 的重定向和struts1 在使用方法上有所不同。

如在一个登录的action中验证成功后,重定向为显示用户信息的action: showInfo.do

一、在struts1 中实现:

程序代码

public class LoginAction extends Action {
    public ActionForward execute(ActionMapping mapping, ActionForm form,
        HttpServletRequest request, HttpServletResponse response) {
       
         //一些处理……

         //重定向
         ActionForward forward = new ActionForward("showInfo.do");
         forward.setRedirect(true);
         return forward ;
    }
}

二、在struts2 中,因为执行函数返回结果不再是ActionForward ,而是一个字符串,所以不能再像struts1中那样跳转了。

在struts2中,重定向要在struts.xml中配置:

程序代码

/pages/logok.vmshowInfo.doshowInfo.do?name=yangzishowInfo.do?name=${name}showInfo${name}

对应的LoginAction:

程序代码

public class LoginAction extends ActionSupport{

String name;

public String getName() {
   return name;
}

public void setName(String name) {
   this.name = name;
}

public String execute() throws Exception {

     //一些处理……

     name=xiaowang ; //给要传递的参数赋值

     return SUCCESS;     //默认页面

    //return "redirect_1" ; //重定向(不带参数) showInfo.do

    //return "redirect_2" ; //重定向(带固定参数yangzi) showInfo.do?name=yangzi

    //重定向(带动态参数,根据struts.xml的配置将${name}赋值为xiaowang)最后为 showInfo.do?name=xiaowang  
    // return "redirect_3" ;

    //return "redirect_4" ; //这个是重定向到 一个action

}

}

三、说明

struts2 重定向分重定向到url和重定向到一个action。实现重定向,需在struts.xml中定义返回结果类型。

type="redirect" 是重定向到一个URL。type="redirect-action" 是重定向到一个action。参数也是在这里指定,action中所做的就是给参数赋值,并return 这个结果。

个人认为:由于大家极度抱怨“action臃肿”,所以struts2中尽量减少了action中的代码。