以下部分转载自~ 永无止境~的博客(如有侵权请联系在下删除)
点击标题直达原文章
ServletActionContext.getRequest().getSession() 和 ActionContext.getContext().getSession()
ActionContext.getContext().getSession() | ServletActionContext.getRequest().getSession() |
---|---|
这个方法获取的session是struts封装过的一个Map类型的session,只能调用put()方法缓存数据 | 这个方法获取的session是原生的session,可以调用setAttribute()方法 |
在jsp页面可以用${"name"}(EL表达式-待研究)来了获取内容。