struts2 的Action中若希望访问Session对象,可采用两种方式:1、从ActionContext中获取;2、实现SessionAware接口。1、从ActionContext中获取Map<String , Object > session = ActionContext.getContext().getSession();session.put("userName", user.getUserName());2、实现SessionAware接口: