Glassfish 和 Quartz 的 PersistenceUnit null
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
注入资源仅适用于容器托管类。 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.