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.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…