关于spring的 flashattribute
redirectAttributes.addFlashAttribute("user", user);redirectAttributes.addFlashAttribute("message", "用户名或密码错误!");
modelAndView.setViewName("redirect:login");
如以上代码,返回给前端message是可行的,但是返回user这个实体不行,求思路
你要 定义 返回 一个Map<String,Object>
map.put("user", user);
return map; 七总威武............
页:
[1]