Uses of Interface
org.hibernate.jpa.boot.spi.EntityManagerFactoryBuilder
-
Packages that use EntityManagerFactoryBuilder Package Description org.hibernate.jpa Responsible for dealing with certain details of compliance with the JPA specification, including: bootstrapping JPA, calling JPA event listeners, and managing cases where Hibernate intentionally violates the specification by default (something Hibernate only does if it has a really good reason to do so).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(jakarta.persistence.spi.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(jakarta.persistence.spi.PersistenceUnitInfo persistenceUnitInfo, Map integration)
static EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(jakarta.persistence.spi.PersistenceUnitInfo persistenceUnitInfo, Map integration, ClassLoader providedClassLoader)
static EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(jakarta.persistence.spi.PersistenceUnitInfo persistenceUnitInfo, Map integration, Consumer<EntityManagerFactoryBuilderImpl.MergedSettings> mergedSettingsBaseline)
For tests onlystatic EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(jakarta.persistence.spi.PersistenceUnitInfo persistenceUnitInfo, Map integration, ClassLoaderService providedClassLoaderService)
static EntityManagerFactoryBuilder
Bootstrap. getEntityManagerFactoryBuilder(URL persistenceXmlUrl, String persistenceUnitName, jakarta.persistence.spi.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
-