Uses of Interface
org.hibernate.jpa.boot.spi.EntityManagerFactoryBuilder
-
Packages that use EntityManagerFactoryBuilder Package Description org.hibernate.jpa The packages in this namespace are responsible for implementing certain requirements of the JPA specification, especially things which are only needed when Hibernate is acting as a JPA persistence provider.org.hibernate.jpa.boot.internal org.hibernate.jpa.boot.spi -
-
Uses of EntityManagerFactoryBuilder in org.hibernate.jpa
Methods in org.hibernate.jpa that return EntityManagerFactoryBuilder Modifier and Type Method Description protected EntityManagerFactoryBuilder
HibernatePersistenceProvider. getEntityManagerFactoryBuilder(PersistenceUnitInfo info, Map<?,?> integration)
protected EntityManagerFactoryBuilder
HibernatePersistenceProvider. getEntityManagerFactoryBuilder(PersistenceUnitDescriptor persistenceUnitDescriptor, Map<?,?> integration, ClassLoader providedClassLoader)
protected EntityManagerFactoryBuilder
HibernatePersistenceProvider. getEntityManagerFactoryBuilder(PersistenceUnitDescriptor persistenceUnitDescriptor, Map<?,?> integration, ClassLoaderService providedClassLoaderService)
protected EntityManagerFactoryBuilder
HibernatePersistenceProvider. getEntityManagerFactoryBuilderOrNull(String persistenceUnitName, Map<?,?> properties)
protected EntityManagerFactoryBuilder
HibernatePersistenceProvider. getEntityManagerFactoryBuilderOrNull(String persistenceUnitName, Map<?,?> properties, ClassLoader providedClassLoader)
protected EntityManagerFactoryBuilder
HibernatePersistenceProvider. getEntityManagerFactoryBuilderOrNull(String persistenceUnitName, Map<?,?> properties, ClassLoaderService providedClassLoaderService)
-
Uses of EntityManagerFactoryBuilder in org.hibernate.jpa.boot.internal
Classes in org.hibernate.jpa.boot.internal that implement EntityManagerFactoryBuilder Modifier and Type Class Description class
EntityManagerFactoryBuilderImpl
Methods in org.hibernate.jpa.boot.internal that return EntityManagerFactoryBuilder Modifier and Type Method Description EntityManagerFactoryBuilder
EntityManagerFactoryBuilderImpl. withDataSource(DataSource dataSource)
EntityManagerFactoryBuilder
EntityManagerFactoryBuilderImpl. withValidatorFactory(Object validatorFactory)
-
Uses of EntityManagerFactoryBuilder in org.hibernate.jpa.boot.spi
Methods in org.hibernate.jpa.boot.spi that return EntityManagerFactoryBuilder Modifier and Type Method Description static EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(PersistenceUnitInfo persistenceUnitInfo, Map integration)
static EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(PersistenceUnitInfo persistenceUnitInfo, Map integration, ClassLoader providedClassLoader)
static EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(PersistenceUnitInfo persistenceUnitInfo, Map integration, Consumer<EntityManagerFactoryBuilderImpl.MergedSettings> mergedSettingsBaseline)
For tests onlystatic EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(PersistenceUnitInfo persistenceUnitInfo, Map integration, ClassLoaderService providedClassLoaderService)
static EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(URL persistenceXmlUrl, String persistenceUnitName, PersistenceUnitTransactionType transactionType, Map integration)
Intended for use in Hibernate testsstatic EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(URL persistenceXmlUrl, String persistenceUnitName, Map integration)
Intended for use in Hibernate testsstatic EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(PersistenceUnitDescriptor persistenceUnitDescriptor, Map integration)
static EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(PersistenceUnitDescriptor persistenceUnitDescriptor, Map integration, ClassLoader providedClassLoader)
static EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(PersistenceUnitDescriptor persistenceUnitDescriptor, Map integration, Consumer<EntityManagerFactoryBuilderImpl.MergedSettings> mergedSettingsBaseline)
For tests onlystatic EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(PersistenceUnitDescriptor persistenceUnitDescriptor, Map integration, ClassLoaderService providedClassLoaderService)
EntityManagerFactoryBuilder
EntityManagerFactoryBuilder. withDataSource(DataSource dataSource)
Allows passing in a DataSource (delayed from constructing the builder, AKA phase 2) to be used in building the EntityManagerFactoryEntityManagerFactoryBuilder
EntityManagerFactoryBuilder. withValidatorFactory(Object validatorFactory)
Allows passing in a Java EE ValidatorFactory (delayed from constructing the builder, AKA phase 2) to be used in building the EntityManagerFactory
-