无参数
- 使用 ModelAndView
return new ModelAndView("redirect:/toList");
- 返回 String
return "redirect:/ toList ";
带参数
- 自己手动拼接 url
new ModelAndView("redirect:/toList?param1="+value1+"¶m2="+value2);
这样有个弊端,就是传中文可能会有乱码问题。
- 用 RedirectAttributes,这个是发现的一个比较好用的一个类,这里用它的 addAttribute 方法,这个实际上重定向过去以后你看 url,是它自动给你拼了你的 url。
public String save(@ModelAttribute("form") Bean form,RedirectAttributes attr) throws Exception {
attr.addAttribute("param", value);
return "redirect:/namespace/toController";
}
欢迎来到这里!
我们正在构建一个小众社区,大家在这里相互信任,以平等 • 自由 • 奔放的价值观进行分享交流。最终,希望大家能够找到与自己志同道合的伙伴,共同成长。
注册 关于