SpringBoot问题:RedirectAttributes存值后读取不到
Posted bigcabbage
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot问题:RedirectAttributes存值后读取不到相关的知识,希望对你有一定的参考价值。
首先,检查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存值后读取不到的主要内容,如果未能解决你的问题,请参考以下文章
springboot项目调用webservice客户端 问题
springboot 解决跨域问题[不生效,就问你气不气?]