美文网首页Java 杂谈Java
SpringBoot问题:RedirectAttributes存

SpringBoot问题:RedirectAttributes存

作者: 88b61f4ab233 | 来源:发表于2019-06-26 17:11 被阅读2次

首先,检查Controller上面是@Controller还是@RestController(两者区别自行百度)

其次,如下

  @GetMapping("/redirect")
    public String redirect(RedirectAttributes redirectAttributes)
    {
        redirectAttributes.addFlashAttribute("test", 1);
        return "redirect:/show";
    }

    @GetMapping("/show")
    @ResponseBody
    //必须要添加@ModelAttribute标签,否侧将读不到值
    //且必须指定变量名,并不会自动做匹配
    public Map<String, Object> show(@ModelAttribute("test") int test)
    {
        Map<String, Object> modelMap = new HashMap<>();
        modelMap.put("String", test);
        return modelMap;
    }

相关文章

网友评论

    本文标题:SpringBoot问题:RedirectAttributes存

    本文链接:https://www.haomeiwen.com/subject/aufhcctx.html