ServletActionContext.getRequest().getSession() 和 ActionContext.getContext().getSession()

ActionContext.getContext().getSession();  

这个方法获取的session是struts封装过的一个Map类型的session,只能调用put()方法缓存数据。

 

 

 

ServletActionContext.getRequest().getSession();

这个方法获取的session是原生的session,可以调用setAttribute()方法。

posted @ 2016-07-25 16:56  ~永无止境~  阅读(7313)  评论(0编辑  收藏  举报