向session共享数据(使用的是servletAPI方法,推荐)


向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

(0)
上一篇 2022年6月19日 08:46
下一篇 2022年6月19日 08:49

相关推荐

发表回复

登录后才能评论