Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

EclipseLink/Examples/JPA/OutsideContainer

< EclipseLink‎ | Examples‎ | JPA
Revision as of 10:35, 15 October 2007 by Unnamed Poltroon (Talk)

Users may also use the EntityManager API outside the container.

Using a persistence unit name

EntityManagerFactory emf = Persistence.createEntityManagerFactory(persistenceUnitName, propertiesMap);
EntityManager em = emf.createEntityManager();

Back to the top