其他分享
首页 > 其他分享> > redirect重定向Controller中两个Controller之间传递参数

redirect重定向Controller中两个Controller之间传递参数

作者:互联网

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";//跳转页面
}

标签:redirect,test1,test2,msg1,重定向,Controller,return,String
来源: https://blog.csdn.net/qq_44694720/article/details/115384829