我需要在使用modelAndView
重定向后显示“消息”但是,众所周知,这是不可能的,然后,我使用redirectView,但我不知道如何显示视图。
总之,我需要改变这个:
ModelAndView model = new ModelAndView("product/edit");
在
RedirectView redirectView = new RedirectView("product/edit");
答案 0 :(得分:0)
您可以将消息存储为session
范围属性,然后重定向到jsp页面,您可以使用JSP Standard Tag Library和Expression language重新访问该页面。
控制器:
@RequestMapping(...)
public String method1(...){
...
session.setAttribute("message", "Hello, How are you?");
return "redirect:product/edit";
}
注意:此处您也可以使用RedirectView
。
JSP:
${sessionScope.message}