向session共享数据(使用的是servletAPI方法,推荐)
@RequestMapping("/testSession")
public String testSession(HttpSession session){
session.setAttribute("testSession","hello, session");
return "target3";
}
public String testSession(HttpSession session){ 将请求报文中的Session对象以类似byName的方式给形参赋值
session.setAttribute("testSession","hello, session"); 向session域对象中共享数据
springMVC提供了一个注解@SessionAttribute(”…“),作用是向Request域对象共享数据时,同时也向Session域对象共享数据
原创文章,作者:端木书台,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/268321.html