LOTD #22: How to inject JPA resources ? - PersistenceUnit vs PersistenceContext
Posted by arungupta on August 19, 2009 at 6:39 PM EDT
Java Persistence API defines a standard object/relational mapping using POJOs. In JPA, a persistence unit is described using "persistence.xml", bundled with the web application, injected into your web application and then POJOs are used to access all the information from the underlying persistence mechanism such as a database.
JPA can injected into your application couple of different ways as shown below:
| @PersistenceUnit EntityManagerFactory emf; |
and
| @PersistenceContext EntityManager manager; |
Which one is preferred, why, and pros/cons are very clearly explained in (slightly old but very relevant) this blog. It also discusses a JNDI approach.
In case you are interested in the summary:
- Use "@PersistenceUnit EntityManagerFactory" for Servlets because of thread safety
- Use "@PersistenceContext EntityManager" in EJBs for simpler/cleaner code
All previous entries in this series are archived at LOTD.
Technorati: lotd glassfish jpa javaee persistence
Blog Links >>
- Login or register to post comments
- Printer-friendly version
- arungupta's blog
- 2650 reads





