springmvc中重定向进程中的传参
springmvc中重定向过程中的传参
示例:
示例:
@RequestMapping("/test") public String test(RedirectAttributes redirectAttributes){ redirectAttributes.addFlashAttribute("msg", "登录失败,该账号不存在"); return "redirect:/"; }