SpringMVC使用RedirectView进行POST重定向

原文地址:http://www.osheep.cn/574.html

SpringMVC提供一个优雅的后台重定向方式:RedirectView
在需要封装数据,并进行重定向的场景使用它在适合不过了;

 

  1.     /**  
  2.      * 请求进行重定向  
  3.      */  
  4.     @RequestMapping(value = "postPayAmount", method = RequestMethod.GET)   
  5.     public RedirectView postPayAmount(HttpSession session,ModelMap map) {   
  6.         return new RedirectView(WsUrlConf.URI_PAY,true,false,false);//最后的参数为false代表以post方式提交请求   
  7.     }  


 

而ModelAndView又可以封装RedirectView进行使用,用起来酸爽得很~~

常见用法:

 

  1. return new ModelAndView(new RedirectView("xxx.do"), map);  

你可能感兴趣的:(JavaEE,Spring)