Injecting entity manager into managed bean

隐身守侯 提交于 2019-11-27 07:21:54

问题


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.


回答1:


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.



来源:https://stackoverflow.com/questions/4727920/injecting-entity-manager-into-managed-bean

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!