将实体管理器注入托管 bean
是否可以使用@PersistenceContext(或@PersistenceUnit)将实体管理器(或其工厂)注入jsf托管bean中?
我尝试过,但没有任何结果,我得到了一个 NullPointerException 。
It is possible to inject entity manager (or its factory) into jsf managed bean using @PersistenceContext
(or @PersistenceUnit
)?
I Tried it but nothing, I obtain a NullPointerException.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,这是可能的。这是语法。
您的项目中需要有 persistence.xml。顺便说一句:我正在运行 Glassfish 3。
之后您可以使用 em.createNamedQuery 等方法。
另请记住,注入发生在构造函数之后,因此如果您尝试在构造函数中执行数据库函数,则这是行不通的。您必须将 @PostConstruct 注释添加到方法中。这可能是您遇到的问题。
Yes it is possible. This is the syntax.
You need to have a persistence.xml in your project. Btw: I'm running Glassfish 3.
After this you can then use methods like em.createNamedQuery.
Also remember the injection takes place after the constructor so if your trying to do database functions in the constructor this will not work. You will have to add the @PostConstruct annotation to a method. This is probably the problem your having.