Spring MVC中redirect到一个页面,同时带些信息过去进行显示,但是不通过Session方式及URL方式?

如何在Spring MVC中redirect到一个页面,同时带些信息过去进行显示,但是不通过Session方式及URL方式?

想用跟正常的ModelAndView方式,但是用了RedirectView过去是拿不到的 ,如:
new ModelAndView(new RedirectView("xxx.do"),"modelName",modelMap); 

只能用Session这种方式
request.getSession().setAttribute("msg",map);

或URL后面加信息
new ModelAndView(new RedirectView("xxx.do?msg=xyz");

然后在页面获取进行显示?

有没有更好的方法?

你可能感兴趣的:(spring,AOP,jsp,Web,mvc)