RedirectAttributes
@RequestMapping("/test1")
public String test1(RedirectAttributes attributes) {
attributes.addFlashAttribute("msg1", "传递的参数数据");
return "redirect:/test2"; //重定向
}
@GetMapping("/test2")
public String test2(@ModelAttribute("msg1") String msg1,Model model) {
model.addAttribute("msg", msg1);
return "/index";//跳转页面
}