• SpringMVC跨重定向请求传递数据


    (1)使用URL模板以路径变量和查询参数的形式传递数据(一些简单的数据)

     1     @GetMapping("/home/index")
     2     public String index(Model model){
     3         Meinv meinv = new Meinv("gaoxing",22);
     4         model.addAttribute("lastName",meinv.getLastName());
     5         model.addAttribute("age",meinv.getAge());
     6         return "redirect:/home/details/{lastName}";
     7     }
     8 
     9     @GetMapping("/home/details/{lastName}")
    10     public String details(@PathVariable String lastName, @RequestParam Integer age){
    11         System.out.println(lastName);
    12         System.out.println(age);
    13         return "home";
    14     }

    (2)通过flash属性发送数据(对象等复杂数据)

     1     @GetMapping("/home/index")
     2     public String index(RedirectAttributes model){
     3         Meinv meinv = new Meinv("gaoxing",22);
     4         model.addAttribute("lastName",meinv.getLastName());
     5         model.addFlashAttribute("meinv",meinv);
     6         return "redirect:/home/details/{lastName}";
     7     }
     8 
     9     @GetMapping("/home/details/{lastName}")
    10     public String details(@PathVariable String lastName, Model model){
    11         Meinv meinv = null;
    12         if(model.containsAttribute("meinv")){
    13             meinv = (Meinv) model.asMap().get("meinv");
    14         }
    15         System.out.println(meinv);
    16         return "home";
    17     }
  • 相关阅读:
    行列式学习笔记
    二项式反演学习笔记
    【AtCoder】ARC096(C
    【LOJ】#2127. 「HAOI2015」按位或
    [ACM] POJ 1218 THE DRUNK JAILER (关灯问题)
    lua的弱弱引用表
    西班牙式软件团队
    【DRP】採用dom4j完毕XML文件导入数据库
    基于Linux平台病毒Wirenet.c解析
    【剑指offer】异或去重
  • 原文地址:https://www.cnblogs.com/fanqisoft/p/10263091.html
Copyright © 2020-2023  润新知