不使用单例或静态引用 HttpSessionListener 实例

发布于 2024-11-25 02:13:25 字数 220 浏览 0 评论 0原文

我已经在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小糖芽 2024-12-02 02:13:25

我不确定您为什么要从 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文