一:实现implements SessionAware接口
二:调用ActionContext方法获得Session对象 代码如下:
Map session = (Map) ActionContext.getContext().getSession();
这个是Map形式的
三:调用ServletActionContext方法获得Session对象
一:实现implements SessionAware接口
二:调用ActionContext方法获得Session对象 代码如下:
Map session = (Map) ActionContext.getContext().getSession();
这个是Map形式的
ServletActionContext.getRequest().getSession();//这个是HttpSession形式的