Glassfish 和 Quartz 的 PersistenceUnit null

发布于 2025-01-08 18:22:36 字数 366 浏览 2 评论 0原文

我正在使用 jsp 和 servlet 构建一个简单的 Web 应用程序。该应用程序部署在 Glassfish 服务器上并使用 JPA / Hibernate。

我需要创建一个与 JPA 一起使用的 Quartz 作业(选择/更新...)。我尝试添加:

<前><代码>@PersistenceUnit 私有 EntityManagerFactory emf;

进入我的工作,但它是空的。顺便说一句,它适用于我的 servlet 和 ServletContextListener。

我不明白如何强制 glassfish 注入持久性单元。

有什么想法吗?

谢谢

I'm building a simple web app using jsp and servlets. The application is deployed on Glassfish server and use JPA / Hibernate.

I need to create a Quartz Job that work with JPA (select / update...). I've tried to add :

@PersistenceUnit
private EntityManagerFactory emf;

into my Job but it's null. By the way it works for my servlets and ServletContextListener.

I don't see how I can force glassfish to inject the persistence unit.

Any idea ?

THX

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

泪冰清 2025-01-15 18:22:36

注入资源仅适用于容器托管类。 Servlet 和 ServletContextListeners 是容器管理的类,而 Quarz Job 不是。最简单的方法是使用 JNDI 查找。

Injecting resources works only for container managed classes. Servlets and ServletContextListeners are container managed classes, your Quarz Job is not. Easiest way around is to use JNDI lookup.

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