Injecting entity manager into managed bean

后端 未结 1 841
伪装坚强ぢ
伪装坚强ぢ 2020-12-11 10:18

It is possible to inject entity manager (or its factory) into jsf managed bean using @PersistenceContext (or @PersistenceUnit)?

I Tried it

相关标签:
1条回答
  • 2020-12-11 11:03

    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.

    0 讨论(0)
提交回复
热议问题