发布时间:2024-03-09 17:01
SpringMVC 中常用到 redirect 来实现重定向。但使用场景各有需求,如果只是简单的页面跳转显然无法满足所有要求,比如重定向时需要在 url 中拼接参数,或者返回的页面需要传递 Model。
SpringMVC 用 RedirectAttributes 解决了这两个需要。
@RequestMapping(\"/save\") public String save(User user, RedirectAttributes redirectAttributes) { redirectAttributes.addAttribute(\"param\", \"value1\"); return \"redirect:/index\"; }
请求 /save 后,跳转至/index,并且会在url拼接 ?param=value1。
@RequestMapping(\"/save\") public String save(User user, RedirectAttributes redirectAttributes) { redirectAttributes.addFlashAttribute(\"param\", \"value1\"); return \"redirect:/index\"; }
请求 /save 后,跳转至 /index,并且可以在 index 对应的模版中通过表达式,比如 jsp 中 jstl 用 ${param},获取返回值。该值其实是保存在 session 中的,并且会在下次重定向请求时删除。
RedirectAttributes 中两个方法的简单介绍就是这样。
A.jsp发送请求进入Controller,并想重定向到B.jsp并携带参数,发现携带的参数前台获取不到,然后采用以下方法即可
@RequestMapping(\"/index\") public String delete(String id, RedirectAttributes redirectAttributes) { redirectAttributes.addFlashAttribute(\"msg\",\"删除成功!\"); return \"redirect:hello\"; }
@RequestMapping(\"hello\") public String index( @ModelAttribute(\"msg\") String msg) { return \"sentinel\"; }
首先进入delete方法,将msg放在redirectAttributes里,然后重定向到hello,通过@ModelAttribute(“msg”) String msg获取到msg的值,那么自然sentinel页面就能获取到msg的值。
B.jsp发送请求,跳转到A.jsp,并将请求所产生的数据携带到A页面。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
XGBoost、LightGBM与CatBoost算法对比与调参
图解连续学习中的蓄水池抽样算法(The Illustrated Reservoir sampling)
springboot下使用@Scheduled和@Async
Kubernetes K8S之Helm部署EFK日志分析系统
C#操作配置文件app.config、web.config增删改
openharmony北向应用开发实例之HelloWorld
Transformer课程第33章:过滤掉sequential redundancy对Transformer模型Funnel-Transformer架构及完整源码实现
深度学习——卷积神经网络 的经典网络(LeNet-5、AlexNet、ZFNet、VGG-16、GoogLeNet、ResNet)