不使用单例或静态引用 HttpSessionListener 实例
我已经在我的 web.xml
中注册了一个 HttpSessionListener
并且它工作正常,但是我需要从其他区域(例如 Servlet)访问对象实例并且更喜欢不要使用旧的 public static HttpSessionListener obj = this;
(伪)模式。
有没有办法通过 J2ee API 访问该对象?
I've registered an HttpSessionListener
in my web.xml
and it is working fine, however I need to access the object instance from other areas (for example Servlets) and would prefer to not use the old public static HttpSessionListener obj = this;
(pseudo) pattern.
Is there a way to gain access to this object via the J2ee API?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定您为什么要从 servlet 访问会话侦听器。
听起来您真正想做的是从会话监听器重构一个对象,并通过 ServletContext 访问它。然后,servlet 和侦听器都可以访问它。
有关作用域属性的更多信息,请参阅 J2EE 教程。
I'm not sure why you want to access a session listener from a servlet.
It sounds like what you really want to do is refactor an object from the session listener, and access it via
ServletContext
. Then it will be accessible from both the servlet and the listener.See the J2EE Tutorial for more information about scoped attributes.