`
mushme
  • 浏览: 780478 次
  • 性别: Icon_minigender_1
  • 来自: 西安
社区版块
存档分类
最新评论

structs2如何获取session

阅读更多
How do we get access to the session
You can obtain the session attributes by asking the ActionContext or implementing SessionAware. Implementing SessionAware is preferred.

1.Ask the ActionContext
The session attributes are available on the ActionContext instance, which is made available via ThreadLocal.

Map attibutes = ActionContext.getContext().getSession();

2.Implement SessionAware

Ensure that servlet-config Interceptor is included in the Action's stack.
The default stack already includes servlet-config.
Edit the Action so that it implements the SessionAware interface.
The SessionAware interface expects a setSession method. You may wish to include a companion getSession method.
At runtime, call getSession to obtain a Map representing the session attributes.
Any changes made to the session Map are reflected in the actual HttpSessionRequest. You may insert and remove session attributes as needed.
Map parameters = this.getSession();
When the servlet-config Interceptor sees that an Action implements ParameterAware, it passes a Map of the session attributes to the Action's setParameters method. Changes made to the Map are reflected in the runtime HttpSessionRequest.

1.直接使用Map attibutes = ActionContext.getContext().getSession();
2.实现SessionAware接口,然后加一个setSession方法,将session置入到你需要的对象中。
推荐用第二种。
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics