Class LocalSessionFactoryBuilder
- java.lang.Object
- org.hibernate.cfg.Configuration
- org.springframework.orm.hibernate5.LocalSessionFactoryBuilder
- All Implemented Interfaces:
Serializable
public class LocalSessionFactoryBuilder extends Configuration
A Spring-provided extension of the standard HibernateConfigurationclass, addingSpringSessionContextas a default and providing convenient ways to specify a DataSource and an application class loader.This is designed for programmatic use, e.g. in
@Beanfactory methods. Consider usingLocalSessionFactoryBeanfor XML bean definition files.Compatible with Hibernate 5.0/5.1 as well as 5.2, as of Spring 4.3.
- Since:
- 4.2
- Author:
- Juergen Hoeller
- See Also:
LocalSessionFactoryBean, Serialized Form
Nested Class Summary
Nested classes/interfaces inherited from class org.hibernate.cfg.Configuration
Configuration.MappingsImpl, Configuration.MetadataSourceQueue
Field Summary
Fields inherited from class org.hibernate.cfg.Configuration
ARTEFACT_PROCESSING_ORDER, auxiliaryDatabaseObjects, classes, collections, columnNameBindingPerTable, DEFAULT_ARTEFACT_PROCESSING_ORDER, DEFAULT_CACHE_CONCURRENCY_STRATEGY, extendsQueue, fetchProfiles, filterDefinitions, imports, metadataSourceQueue, namedEntityGraphMap, namedProcedureCallMap, namedQueries, namedSqlQueries, propertyReferences, secondPasses, settingsFactory, sqlFunctions, sqlResultSetMappings, tableNameBinding, tables, typeDefs, USE_NEW_ID_GENERATOR_MAPPINGS, xmlHelper
Constructor Summary
Constructors Constructor Description LocalSessionFactoryBuilder(DataSource dataSource)Create a new LocalSessionFactoryBuilder for the given DataSource.LocalSessionFactoryBuilder(DataSource dataSource, ClassLoader classLoader)Create a new LocalSessionFactoryBuilder for the given DataSource.LocalSessionFactoryBuilder(DataSource dataSource, ResourceLoader resourceLoader)Create a new LocalSessionFactoryBuilder for the given DataSource.LocalSessionFactoryBuilder(DataSource dataSource, ResourceLoader resourceLoader, org.hibernate.boot.MetadataSources metadataSources)Create a new LocalSessionFactoryBuilder for the given DataSource.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LocalSessionFactoryBuilderaddAnnotatedClasses(Class<?>... annotatedClasses)Add the given annotated classes in a batch.LocalSessionFactoryBuilderaddPackages(String... annotatedPackages)Add the given annotated packages in a batch.SessionFactorybuildSessionFactory(AsyncTaskExecutor bootstrapExecutor)Build the HibernateSessionFactorythrough background bootstrapping, using the given executor for a parallel initialization phase (e.g.LocalSessionFactoryBuilderscanPackages(String... packagesToScan)Perform Spring-based scanning for entity classes, registering them as annotated classes with thisConfiguration.voidsetCurrentTenantIdentifierResolver(CurrentTenantIdentifierResolver currentTenantIdentifierResolver)Overridden to reliably pass aCurrentTenantIdentifierResolverto the SessionFactory.LocalSessionFactoryBuildersetEntityTypeFilters(TypeFilter... entityTypeFilters)Specify custom type filters for Spring-based scanning for entity classes.LocalSessionFactoryBuildersetJtaTransactionManager(Object jtaTransactionManager)Set the SpringJtaTransactionManageror the JTATransactionManagerto be used with Hibernate, if any.LocalSessionFactoryBuildersetMultiTenantConnectionProvider(org.hibernate.engine.jdbc.connections.spi.MultiTenantConnectionProvider multiTenantConnectionProvider)Set aMultiTenantConnectionProviderto be passed on to the SessionFactory.Methods inherited from class org.hibernate.cfg.Configuration
add, addAnnotatedClass, addAttributeConverter, addAttributeConverter, addAttributeConverter, addAttributeConverter, addAttributeConverter, addAuxiliaryDatabaseObject, addCacheableFile, addCacheableFile, addCacheableFileStrictly, addClass, addDirectory, addDocument, addFetchProfile, addFile, addFile, addFilterDefinition, addInputStream, addJar, addPackage, addProperties, addResource, addResource, addSqlFunction, addURL, addXML, buildMapping, buildMappings, buildSessionFactory, buildSessionFactory, buildSettings, buildSettings, configure, configure, configure, configure, configure, createMappings, doConfigure, doConfigure, findPossibleExtends, generateDropSchemaScript, generateSchemaCreationScript, generateSchemaUpdateScript, generateSchemaUpdateScriptList, getClassMapping, getClassMappings, getCollectionMapping, getCollectionMappings, getConfigurationInputStream, getCurrentTenantIdentifierResolver, getEntityNotFoundDelegate, getEntityResolver, getEntityTuplizerFactory, getFilterDefinitions, getIdentifierGeneratorFactory, getImports, getInterceptor, getJaccPermissionDeclarations, getMappedSuperclassMappings, getMappedSuperclassMappingsCopy, getNamedEntityGraphs, getNamedProcedureCallMap, getNamedQueries, getNamedSQLQueries, getNamingStrategy, getNamingStrategyDelegator, getProperties, getProperty, getReflectionManager, getSessionFactoryObserver, getSqlFunctions, getSqlResultSetMappings, getTableMappings, getTypeResolver, iterateFetchProfiles, iterateGenerators, mergeProperties, registerTypeContributor, registerTypeOverride, registerTypeOverride, registerTypeOverride, reset, secondPassCompile, secondPassCompileForeignKeys, setCacheConcurrencyStrategy, setCacheConcurrencyStrategy, setCacheConcurrencyStrategy, setCollectionCacheConcurrencyStrategy, setCollectionCacheConcurrencyStrategy, setEntityNotFoundDelegate, setEntityResolver, setInterceptor, setNamingStrategy, setNamingStrategyDelegator, setPrecedence, setProperties, setProperty, setSessionFactoryObserver, validateSchema
Constructor Detail
LocalSessionFactoryBuilder
public LocalSessionFactoryBuilder(DataSource dataSource)
Create a new LocalSessionFactoryBuilder for the given DataSource.- Parameters:
dataSource- the JDBC DataSource that the resulting Hibernate SessionFactory should be using (may benull)
LocalSessionFactoryBuilder
public LocalSessionFactoryBuilder(DataSource dataSource, ClassLoader classLoader)
Create a new LocalSessionFactoryBuilder for the given DataSource.- Parameters:
dataSource- the JDBC DataSource that the resulting Hibernate SessionFactory should be using (may benull)classLoader- the ClassLoader to load application classes from
LocalSessionFactoryBuilder
public LocalSessionFactoryBuilder(DataSource dataSource, ResourceLoader resourceLoader)
Create a new LocalSessionFactoryBuilder for the given DataSource.- Parameters:
dataSource- the JDBC DataSource that the resulting Hibernate SessionFactory should be using (may benull)resourceLoader- the ResourceLoader to load application classes from
LocalSessionFactoryBuilder
public LocalSessionFactoryBuilder(DataSource dataSource, ResourceLoader resourceLoader, org.hibernate.boot.MetadataSources metadataSources)
Create a new LocalSessionFactoryBuilder for the given DataSource.- Parameters:
dataSource- the JDBC DataSource that the resulting Hibernate SessionFactory should be using (may benull)resourceLoader- the ResourceLoader to load application classes frommetadataSources- the Hibernate MetadataSources service to use (e.g. reusing an existing one)- Since:
- 4.3
Method Detail
setJtaTransactionManager
public LocalSessionFactoryBuilder setJtaTransactionManager(Object jtaTransactionManager)
Set the SpringJtaTransactionManageror the JTATransactionManagerto be used with Hibernate, if any. Allows for using a Spring-managed transaction manager for Hibernate 5's session and cache synchronization, with the "hibernate.transaction.jta.platform" automatically set to it.A passed-in Spring
JtaTransactionManagerneeds to contain a JTATransactionManagerreference to be usable here, except for the WebSphere case where we'll automatically setWebSphereExtendedJtaPlatformaccordingly.Note: If this is set, the Hibernate settings should not contain a JTA platform setting to avoid meaningless double configuration.
setMultiTenantConnectionProvider
public LocalSessionFactoryBuilder setMultiTenantConnectionProvider(org.hibernate.engine.jdbc.connections.spi.MultiTenantConnectionProvider multiTenantConnectionProvider)
Set aMultiTenantConnectionProviderto be passed on to the SessionFactory.- Since:
- 4.3
- See Also:
AvailableSettings.MULTI_TENANT_CONNECTION_PROVIDER
setCurrentTenantIdentifierResolver
public void setCurrentTenantIdentifierResolver(CurrentTenantIdentifierResolver currentTenantIdentifierResolver)
Overridden to reliably pass aCurrentTenantIdentifierResolverto the SessionFactory.- Overrides:
setCurrentTenantIdentifierResolverin classConfiguration- Since:
- 4.3.2
- See Also:
AvailableSettings.MULTI_TENANT_IDENTIFIER_RESOLVER
setEntityTypeFilters
public LocalSessionFactoryBuilder setEntityTypeFilters(TypeFilter... entityTypeFilters)
Specify custom type filters for Spring-based scanning for entity classes.Default is to search all specified packages for classes annotated with
@javax.persistence.Entity,@javax.persistence.Embeddableor@javax.persistence.MappedSuperclass.- See Also:
scanPackages(java.lang.String...)
addAnnotatedClasses
public LocalSessionFactoryBuilder addAnnotatedClasses(Class<?>... annotatedClasses)
Add the given annotated classes in a batch.
addPackages
public LocalSessionFactoryBuilder addPackages(String... annotatedPackages)
Add the given annotated packages in a batch.
scanPackages
public LocalSessionFactoryBuilder scanPackages(String... packagesToScan) throws HibernateException
Perform Spring-based scanning for entity classes, registering them as annotated classes with thisConfiguration.- Parameters:
packagesToScan- one or more Java package names- Throws:
HibernateException- if scanning fails for any reason
buildSessionFactory
public SessionFactory buildSessionFactory(AsyncTaskExecutor bootstrapExecutor)
Build the HibernateSessionFactorythrough background bootstrapping, using the given executor for a parallel initialization phase (e.g. aSimpleAsyncTaskExecutor).SessionFactoryinitialization will then switch into background bootstrap mode, with aSessionFactoryproxy immediately returned for injection purposes instead of waiting for Hibernate's bootstrapping to complete. However, note that the first actual call to aSessionFactorymethod will then block until Hibernate's bootstrapping completed, if not ready by then. For maximum benefit, make sure to avoid earlySessionFactorycalls in init methods of related beans, even for metadata introspection purposes.- Since:
- 4.3
- See Also:
Configuration.buildSessionFactory()