Package org.hibernate.jpa
Class HibernatePersistenceProvider
java.lang.Object
org.hibernate.jpa.HibernatePersistenceProvider
- All Implemented Interfaces:
PersistenceProvider
The best-ever implementation of a JPA
PersistenceProvider.- Author:
- Gavin King, Steve Ebersole, Brett Meyer
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncreateContainerEntityManagerFactory(PersistenceUnitInfo info, Map properties) Called by the container when anEntityManagerFactoryis to be created.createEntityManagerFactory(String persistenceUnitName, Map properties) Called byPersistenceclass when anEntityManagerFactoryis to be created.voidgenerateSchema(PersistenceUnitInfo info, Map map) Create database schemas and/or tables and/or create DDL scripts as determined by the supplied properties.booleangenerateSchema(String persistenceUnitName, Map map) Create database schemas and/or tables and/or create DDL scripts as determined by the supplied properties.protected EntityManagerFactoryBuildergetEntityManagerFactoryBuilder(PersistenceUnitInfo info, Map<?, ?> integration) protected EntityManagerFactoryBuildergetEntityManagerFactoryBuilder(PersistenceUnitDescriptor persistenceUnitDescriptor, Map<?, ?> integration, ClassLoader providedClassLoader) protected EntityManagerFactoryBuildergetEntityManagerFactoryBuilder(PersistenceUnitDescriptor persistenceUnitDescriptor, Map<?, ?> integration, ClassLoaderService providedClassLoaderService) protected EntityManagerFactoryBuildergetEntityManagerFactoryBuilderOrNull(String persistenceUnitName, Map<?, ?> properties) protected EntityManagerFactoryBuildergetEntityManagerFactoryBuilderOrNull(String persistenceUnitName, Map<?, ?> properties, ClassLoader providedClassLoader) protected EntityManagerFactoryBuildergetEntityManagerFactoryBuilderOrNull(String persistenceUnitName, Map<?, ?> properties, ClassLoaderService providedClassLoaderService) Return the utility interface implemented by the persistence provider.protected static Map<?,?>
-
Constructor Details
-
HibernatePersistenceProvider
public HibernatePersistenceProvider()
-
-
Method Details
-
createEntityManagerFactory
Called byPersistenceclass when anEntityManagerFactoryis to be created.- Specified by:
createEntityManagerFactoryin interfacePersistenceProvider- Parameters:
persistenceUnitName- the name of the persistence unitproperties- a Map of properties for use by the persistence provider. These properties may be used to override the values of the corresponding elements in thepersistence.xmlfile or specify values for properties not specified in thepersistence.xml(and may be null if no properties are specified).- Returns:
- EntityManagerFactory for the persistence unit, or null if the provider is not the right provider
-
getEntityManagerFactoryBuilderOrNull
protected EntityManagerFactoryBuilder getEntityManagerFactoryBuilderOrNull(String persistenceUnitName, Map<?, ?> properties) -
getEntityManagerFactoryBuilderOrNull
protected EntityManagerFactoryBuilder getEntityManagerFactoryBuilderOrNull(String persistenceUnitName, Map<?, ?> properties, ClassLoader providedClassLoader) -
getEntityManagerFactoryBuilderOrNull
protected EntityManagerFactoryBuilder getEntityManagerFactoryBuilderOrNull(String persistenceUnitName, Map<?, ?> properties, ClassLoaderService providedClassLoaderService) -
wrap
-
createContainerEntityManagerFactory
public EntityManagerFactory createContainerEntityManagerFactory(PersistenceUnitInfo info, Map properties) Called by the container when anEntityManagerFactoryis to be created.Note: per-spec, the values passed as
propertiesoverride values found inPersistenceUnitInfo- Specified by:
createContainerEntityManagerFactoryin interfacePersistenceProvider- Parameters:
info- metadata for use by the persistence providerproperties- a Map of integration-level properties for use by the persistence provider (may be null if no properties are specified). These properties may include properties to control schema generation. If a Bean Validation provider is present in the classpath, the container must pass theValidatorFactoryinstance in the map with the key"jakarta.persistence.validation.factory". If the containing archive is a bean archive, the container must pass the BeanManager instance in the map with the key"jakarta.persistence.bean.manager".- Returns:
- EntityManagerFactory for the persistence unit specified by the metadata
-
generateSchema
Description copied from interface:PersistenceProviderCreate database schemas and/or tables and/or create DDL scripts as determined by the supplied properties.Called by the container when schema generation is to occur as a separate phase from creation of the entity manager factory.
- Specified by:
generateSchemain interfacePersistenceProvider- Parameters:
info- metadata for use by the persistence providermap- properties for schema generation; these may also include provider-specific properties
-
generateSchema
Description copied from interface:PersistenceProviderCreate database schemas and/or tables and/or create DDL scripts as determined by the supplied properties.Called by the Persistence class when schema generation is to occur as a separate phase from creation of the entity manager factory.
- Specified by:
generateSchemain interfacePersistenceProvider- Parameters:
persistenceUnitName- the name of the persistence unitmap- properties for schema generation; these may also contain provider-specific properties. The value of these properties override any values that may have been configured elsewhere.- Returns:
- true if schema was generated, otherwise false
-
getEntityManagerFactoryBuilder
protected EntityManagerFactoryBuilder getEntityManagerFactoryBuilder(PersistenceUnitInfo info, Map<?, ?> integration) -
getEntityManagerFactoryBuilder
protected EntityManagerFactoryBuilder getEntityManagerFactoryBuilder(PersistenceUnitDescriptor persistenceUnitDescriptor, Map<?, ?> integration, ClassLoader providedClassLoader) -
getEntityManagerFactoryBuilder
protected EntityManagerFactoryBuilder getEntityManagerFactoryBuilder(PersistenceUnitDescriptor persistenceUnitDescriptor, Map<?, ?> integration, ClassLoaderService providedClassLoaderService) -
getProviderUtil
Description copied from interface:PersistenceProviderReturn the utility interface implemented by the persistence provider.- Specified by:
getProviderUtilin interfacePersistenceProvider- Returns:
- ProviderUtil interface
-