Package org.springframework.orm.jpa
Class EntityManagerFactoryAccessor
java.lang.Object
org.springframework.orm.jpa.EntityManagerFactoryAccessor
- All Implemented Interfaces:
- Aware,- BeanFactoryAware
- Direct Known Subclasses:
- OpenEntityManagerInViewInterceptor,- SharedEntityManagerBean
Base class for any class that needs to access a JPA 
EntityManagerFactory,
 usually in order to obtain a JPA EntityManager. Defines common properties.- Since:
- 2.0
- Author:
- Juergen Hoeller
- See Also:
- 
Field SummaryFields
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionprotected EntityManagerObtain a new EntityManager from this accessor's EntityManagerFactory.Return the JPA EntityManagerFactory that should be used to create EntityManagers.Allow Map access to the JPA properties to be passed to the persistence provider, with the option to add or override specific entries.Return the name of the persistence unit to access the EntityManagerFactory for, if any.protected EntityManagerObtain the transactional EntityManager for this accessor's EntityManagerFactory, if any.protected final EntityManagerFactoryObtain the EntityManagerFactory for actual use.voidsetBeanFactory(BeanFactory beanFactory) Retrieves an EntityManagerFactory by persistence unit name, if none set explicitly.voidSet the JPA EntityManagerFactory that should be used to create EntityManagers.voidsetJpaProperties(Properties jpaProperties) Specify JPA properties, to be passed intoEntityManagerFactory.createEntityManager(Map)(if any).voidsetJpaPropertyMap(Map<String, Object> jpaProperties) Specify JPA properties as a Map, to be passed intoEntityManagerFactory.createEntityManager(Map)(if any).voidsetPersistenceUnitName(String persistenceUnitName) Set the name of the persistence unit to access the EntityManagerFactory for.
- 
Field Details- 
loggerLogger available to subclasses.
 
- 
- 
Constructor Details- 
EntityManagerFactoryAccessorpublic EntityManagerFactoryAccessor()
 
- 
- 
Method Details- 
setEntityManagerFactorySet the JPA EntityManagerFactory that should be used to create EntityManagers.
- 
getEntityManagerFactoryReturn the JPA EntityManagerFactory that should be used to create EntityManagers.
- 
obtainEntityManagerFactoryObtain the EntityManagerFactory for actual use.- Returns:
- the EntityManagerFactory (never null)
- Throws:
- IllegalStateException- in case of no EntityManagerFactory set
- Since:
- 5.0
 
- 
setPersistenceUnitNameSet the name of the persistence unit to access the EntityManagerFactory for.This is an alternative to specifying the EntityManagerFactory by direct reference, resolving it by its persistence unit name instead. If no EntityManagerFactory and no persistence unit name have been specified, a default EntityManagerFactory will be retrieved through finding a single unique bean of type EntityManagerFactory. 
- 
getPersistenceUnitNameReturn the name of the persistence unit to access the EntityManagerFactory for, if any.
- 
setJpaPropertiesSpecify JPA properties, to be passed intoEntityManagerFactory.createEntityManager(Map)(if any).Can be populated with a String "value" (parsed via PropertiesEditor) or a "props" element in XML bean definitions. 
- 
setJpaPropertyMapSpecify JPA properties as a Map, to be passed intoEntityManagerFactory.createEntityManager(Map)(if any).Can be populated with a "map" or "props" element in XML bean definitions. 
- 
getJpaPropertyMapAllow Map access to the JPA properties to be passed to the persistence provider, with the option to add or override specific entries.Useful for specifying entries directly, for example via "jpaPropertyMap[myKey]". 
- 
setBeanFactoryRetrieves an EntityManagerFactory by persistence unit name, if none set explicitly. Falls back to a default EntityManagerFactory bean if no persistence unit specified.- Specified by:
- setBeanFactoryin interface- BeanFactoryAware
- Parameters:
- beanFactory- owning BeanFactory (never- null). The bean can immediately call methods on the factory.
- Throws:
- BeansException- in case of initialization errors
- See Also:
 
- 
createEntityManagerObtain a new EntityManager from this accessor's EntityManagerFactory.Can be overridden in subclasses to create specific EntityManager variants. - Returns:
- a new EntityManager
- Throws:
- IllegalStateException- if this accessor is not configured with an EntityManagerFactory
- See Also:
 
- 
getTransactionalEntityManagerObtain the transactional EntityManager for this accessor's EntityManagerFactory, if any.- Returns:
- the transactional EntityManager, or nullif none
- Throws:
- IllegalStateException- if this accessor is not configured with an EntityManagerFactory
- See Also:
 
 
-