public abstract class SharedEntityManagerCreator extends Object
EntityManager
 reference for a given EntityManagerFactory.
 A shared EntityManager will behave just like an EntityManager fetched from an application server's JNDI environment, as defined by the JPA specification. It will delegate all calls to the current transactional EntityManager, if any; otherwise it will fall back to a newly created EntityManager per operation.
For a behavioral definition of such a shared transactional EntityManager,
 see PersistenceContextType.TRANSACTION and its
 discussion in the JPA spec document. This is also the default being used
 for the annotation-based PersistenceContext.type().
PersistenceContext, 
PersistenceContextType.TRANSACTION, 
JpaTransactionManager, 
ExtendedEntityManagerCreator| Constructor and Description | 
|---|
| SharedEntityManagerCreator() | 
| Modifier and Type | Method and Description | 
|---|---|
| static EntityManager | createSharedEntityManager(EntityManagerFactory emf)Create a transactional EntityManager proxy for the given EntityManagerFactory. | 
| static EntityManager | createSharedEntityManager(EntityManagerFactory emf,
                         Map<?,?> properties)Create a transactional EntityManager proxy for the given EntityManagerFactory. | 
| static EntityManager | createSharedEntityManager(EntityManagerFactory emf,
                         Map<?,?> properties,
                         boolean synchronizedWithTransaction)Create a transactional EntityManager proxy for the given EntityManagerFactory. | 
| static EntityManager | createSharedEntityManager(EntityManagerFactory emf,
                         Map<?,?> properties,
                         boolean synchronizedWithTransaction,
                         Class<?>... entityManagerInterfaces)Create a transactional EntityManager proxy for the given EntityManagerFactory. | 
| static EntityManager | createSharedEntityManager(EntityManagerFactory emf,
                         Map<?,?> properties,
                         Class<?>... entityManagerInterfaces)Create a transactional EntityManager proxy for the given EntityManagerFactory. | 
public static EntityManager createSharedEntityManager(EntityManagerFactory emf)
emf - the EntityManagerFactory to delegate to.public static EntityManager createSharedEntityManager(EntityManagerFactory emf, Map<?,?> properties)
emf - the EntityManagerFactory to delegate to.properties - the properties to be passed into the
 createEntityManager call (may be null)public static EntityManager createSharedEntityManager(EntityManagerFactory emf, Map<?,?> properties, boolean synchronizedWithTransaction)
emf - the EntityManagerFactory to delegate to.properties - the properties to be passed into the
 createEntityManager call (may be null)synchronizedWithTransaction - whether to automatically join ongoing
 transactions (according to the JPA 2.1 SynchronizationType rules)public static EntityManager createSharedEntityManager(EntityManagerFactory emf, Map<?,?> properties, Class<?>... entityManagerInterfaces)
emf - EntityManagerFactory to obtain EntityManagers from as neededproperties - the properties to be passed into the
 createEntityManager call (may be null)entityManagerInterfaces - the interfaces to be implemented by the
 EntityManager. Allows the addition or specification of proprietary interfaces.public static EntityManager createSharedEntityManager(EntityManagerFactory emf, Map<?,?> properties, boolean synchronizedWithTransaction, Class<?>... entityManagerInterfaces)
emf - EntityManagerFactory to obtain EntityManagers from as neededproperties - the properties to be passed into the
 createEntityManager call (may be null)synchronizedWithTransaction - whether to automatically join ongoing
 transactions (according to the JPA 2.1 SynchronizationType rules)entityManagerInterfaces - the interfaces to be implemented by the
 EntityManager. Allows the addition or specification of proprietary interfaces.