博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring mvc redirect 重定向 跳转并传递参数
阅读量:6280 次
发布时间:2019-06-22

本文共 3179 字,大约阅读时间需要 10 分钟。

在项目中做form表单功能提交时,防止用户客户端后退或者刷新时重复提交问题,需要在服务端进行重定向跳转,具体跳转方式有以下几种方式:

公用代码:

Java代码  
  1. @RequestMapping(value=“/index”,method = { RequestMethod.POST, RequestMethod.GET })  
  2. public  ModelAndView index(HttpServletResponse response){  
  3.     ModelAndView model = new ModelAndView(“/home/index”);  
  4.     return model;  
  5. }  
@RequestMapping(value="/index",method = { RequestMethod.POST, RequestMethod.GET })public  ModelAndView index(HttpServletResponse response){    ModelAndView model = new ModelAndView("/home/index");    return model;}

 

 

一、使用HttpServletResponse 进行重定向跳转

  

Java代码  
  1.      @RequestMapping(value=“/toIndex”,method = { RequestMethod.POST, RequestMethod.GET })  
  2. ublic  ModelAndView toIndex(HttpServletResponse response){  
  3. try {  
  4.     response.sendRedirect(”/index”);  
  5. catch (IOException e1) {  
  6. }  
  7. return null;  
@RequestMapping(value="/toIndex",method = { RequestMethod.POST, RequestMethod.GET })    public  ModelAndView toIndex(HttpServletResponse response){        try {            response.sendRedirect("/index");        } catch (IOException e1) {        }        return null;    }

 

二、依赖spring mvc的 ViewResolver直接跳转

 

Java代码  
  1. @RequestMapping(value=“/toIndex”,method = { RequestMethod.POST, RequestMethod.GET })  
  2. public  String toIndex(HttpServletResponse response){  
  3.     return “redirect:/index”;  
  4. }  
@RequestMapping(value="/toIndex",method = { RequestMethod.POST, RequestMethod.GET })public  String toIndex(HttpServletResponse response){    return "redirect:/index";}

 

注:当需要传递简单参数时可以使用以上两种方式通过get方式将参数拼接到url路劲后面。

 

三、依赖Spring mvc的RedirectAttributes 

 

Java代码  
  1. @RequestMapping(value=“/toIndex”,method = { RequestMethod.POST, RequestMethod.GET })  
  2. public  String toIndex(HttpServletResponse response,RedirectAttributes model){  
  3.     model.addFlashAttribute(”userName”‘TimerBin’);  
  4.     model.addFlashAttribute(”userPass”‘ApeVm23U3wxEGocX’);  
  5.     return “redirect:/index”;  
  6. }  
@RequestMapping(value="/toIndex",method = { RequestMethod.POST, RequestMethod.GET })public  String toIndex(HttpServletResponse response,RedirectAttributes model){    model.addFlashAttribute("userName", 'TimerBin');    model.addFlashAttribute("userPass", 'ApeVm23U3wxEGocX');    return "redirect:/index";}

 在/home/index 可以直接使用{</span><span style="font-family: monospace; line-height: 1.5; background-color: #fafafa;">userName</span><span style="font-family: monospace; line-height: 1.5; background-color: #fafafa;">},</span><span style="line-height: 1.5; font-family: monospace; background-color: #fafafa;">{

userPass}来获取重定向跳转的参数信息,这种方式可以处理复杂的参数传值问题,还可以使用此种方式来隐藏或缩短原有请求URL信息。

 

在controller中获取放在RedirectAttributes中的userName信息的方式:

 

Java代码  
  1. @RequestMapping(value=“/index”,method = { RequestMethod.POST, RequestMethod.GET })  
  2. public  ModelAndView index(@ModelAttribute(“userName”) String userName){  
  3.         ModelAndView  model = new ModelAndView(“/main/index”);   
  4.     model.addObject(”userName”, userName);  
  5.     return model;  
  6. }  
@RequestMapping(value="/index",method = { RequestMethod.POST, RequestMethod.GET })public  ModelAndView index(@ModelAttribute("userName") String userName){        ModelAndView  model = new ModelAndView("/main/index");     model.addObject("userName", userName);    return model;}

 

 注:在项目中使用RedirectAttributes,因为该对象就是把参数信息放到项目中的session中,再多台服务器中使用该对象存储参数时已经要保证sesion设置是粘性的,不然在集群服务器中不支持该对象的使用!

 

 

 

 

转载地址:http://chnva.baihongyu.com/

你可能感兴趣的文章
3.31
查看>>
类对象定义 二
查看>>
收费视频网站Netflix:用户到底想要“点”什么?
查看>>
MacOS High Sierra 12 13系统转dmg格式
查看>>
关于再次查看已做的多选题状态逻辑问题
查看>>
动态下拉菜单,非hover
查看>>
政府安全资讯精选 2017年第十六期 工信部发布关于规范互联网信息服务使用域名的通知;俄罗斯拟建立备用DNS;Google打击安卓应用在未经同意情况下收集个人信...
查看>>
简单易懂的谈谈 javascript 中的继承
查看>>
iOS汇编基础(四)指针和macho文件
查看>>
Laravel 技巧锦集
查看>>
Android 使用 ViewPager+RecyclerView+SmartRefreshLayout 实现顶部图片下拉视差效果
查看>>
Flutter之基础Widget
查看>>
写给0-3岁产品经理的12封信(第08篇)——产品运营能力
查看>>
ArcGIS Engine 符号自动化配置工具实现
查看>>
小程序 · 跳转带参数写法,兼容url的出错
查看>>
flutter error
查看>>
Flask框架从入门到精通之模型数据库配置(十一)
查看>>
10年重新出发
查看>>
2019年-年终总结
查看>>
聊聊elasticsearch的RoutingService
查看>>