网上的demo试了下,竟然没一个好使的。。。
哪位大神,有过亲身实践经验,help
优雅的写法,亲测有效
@RequestMapping("flash")
public String flash(RedirectAttributes redirectAttributes) {
redirectAttributes.addFlashAttribute("username", "Biao");
return "redirect:flash2";
}
@RequestMapping("flash2")
@ResponseBody
public String flash2(@ModelAttribute("username") String username) {
return "username: " + username;
}