将实体管理器注入托管 bean

发布于 2024-10-12 19:05:19 字数 127 浏览 2 评论 0原文

是否可以使用@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 技术交流群。

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

发布评论

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

评论(1

末骤雨初歇 2024-10-19 19:05:19

是的,这是可能的。这是语法。

@PersistenceContext
EntityManager em;

您的项目中需要有 persistence.xml。顺便说一句:我正在运行 Glassfish 3。

之后您可以使用 em.createNamedQuery 等方法。

另请记住,注入发生在构造函数之后,因此如果您尝试在构造函数中执行数据库函数,则这是行不通的。您必须将 @PostConstruct 注释添加到方法中。这可能是您遇到的问题。

Yes it is possible. This is the syntax.

@PersistenceContext
EntityManager em;

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.

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