Package org.hibernate.internal
Class SessionFactoryImpl
java.lang.Object
org.hibernate.internal.QueryParameterBindingTypeResolverImpl
org.hibernate.internal.SessionFactoryImpl
- All Implemented Interfaces:
EntityManagerFactory
,Serializable
,AutoCloseable
,Referenceable
,SessionFactoryImplementor
,BindingContext
,QueryParameterBindingTypeResolver
,SqmCreationContext
,SessionFactory
,SqlAstCreationContext
,MappingContext
public class SessionFactoryImpl
extends QueryParameterBindingTypeResolverImpl
implements SessionFactoryImplementor
Concrete implementation of the
SessionFactory
API.
Exposes two interfaces:
SessionFactory
to the application, andSessionImplementor
(an SPI interface) to other subsystems.
This class is thread-safe.
- See Also:
- Implementation Note:
- This class must appear immutable to clients, even if it does all kinds of caching and pooling under the covers. It is crucial that the class is not only thread-safe, but also highly concurrent. Synchronization must be used extremely sparingly.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
static class
-
Constructor Summary
ConstructorsConstructorDescriptionSessionFactoryImpl
(MetadataImplementor bootMetamodel, SessionFactoryOptions options, BootstrapContext bootstrapContext) -
Method Summary
Modifier and TypeMethodDescription<T> void
addNamedEntityGraph
(String graphName, EntityGraph<T> entityGraph) void
addNamedQuery
(String name, Query query) void
addObserver
(SessionFactoryObserver observer) bestGuessEntityName
(Object object) The best guess entity name for an entity not in an association<R> R
callInTransaction
(Function<EntityManager, R> work) Class<?>
classForName
(String className) void
close()
Closes the session factory, releasing all held resources.static Interceptor
configuredInterceptor
(Interceptor interceptor, boolean explicitNoInterceptor, SessionFactoryOptions options) static Interceptor
configuredInterceptor
(Interceptor interceptor, SessionFactoryOptions options) Deprecated.boolean
Determine if there is a fetch profile definition registered under the given name.Create a newSession
.createEntityManager
(SynchronizationType synchronizationType) Create a newSession
, with the given synchronization type.createEntityManager
(SynchronizationType synchronizationType, Map map) createEntityManager
(Map map) Create a newSession
, with the given properties.findEntityGraphByName
(String name) Return the rootEntityGraph
with the given name, ornull
if there is no graph with the given name.<T> List<EntityGraph<? super T>>
findEntityGraphsByType
(Class<T> entityClass) Return allEntityGraph
s registered for the given entity type.getCache()
Obtain direct access to the underlying cache regions.Obtains the current session, an instance ofSession
implicitly associated with some context or scope.Obtain the set of names of alldefined fetch profiles
.Obtain the set of names of alldefined filters
.Get the EventEngine associated with this SessionFactorygetFetchProfile
(String name) Retrieve fetch profile by name.getFilterDefinition
(String filterName) Obtain the definition of a filter by name.getGenerator
(String rootEntityName) Deprecated.getIdentifierPropertyName
(String className) getIdentifierType
(String className) The JNDI name, used to bind the SessionFactory to JNDIWhen creatingFetch
references, defines a limit to how deep we should join for fetches.getName()
Access to the name (if one) assigned to theSessionFactory
<E> Map<String,
EntityGraph<? extends E>> getNamedEntityGraphs
(Class<E> entityType) <R> Map<String,
TypedQueryReference<R>> getNamedQueries
(Class<R> resultType) getReferencedPropertyType
(String className, String propertyName) ASchemaManager
with the same default catalog and schema as pooled connections belonging to this factory.Access to theServiceRegistry
for thisSessionFactory
.Get the options used to build this factory.Retrieve the statistics for this factory.The java type to use for a tenant identifier.getUuid()
Get the UUID for thisSessionFactory
.boolean
isClosed()
Is this factory already closed?boolean
isOpen()
OverridesSessionFactory.openSession()
to widen the return type: this is useful for internal code depending onSessionFactoryImplementor
as it would otherwise need to frequently resort to casting to the internal contract.Open a new stateless session.openStatelessSession
(Connection connection) Open a new stateless session, utilizing the specified JDBCConnection
.Get a non-transactional "current" session (used by hibernate-envers)void
<T> T
protected void
Obtain a session builder for creating newSession
s with certain customized options.Obtain aStatelessSession
builder.Methods inherited from class org.hibernate.internal.QueryParameterBindingTypeResolverImpl
resolveParameterBindType, resolveParameterBindType
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.hibernate.query.spi.QueryParameterBindingTypeResolver
getMappingMetamodel, resolveParameterBindType, resolveParameterBindType
Methods inherited from interface org.hibernate.SessionFactory
fromSession, fromStatelessSession, fromStatelessTransaction, fromTransaction, inSession, inStatelessSession, inStatelessTransaction, inTransaction
Methods inherited from interface org.hibernate.engine.spi.SessionFactoryImplementor
getMappingMetamodel, getSessionFactory
Methods inherited from interface org.hibernate.query.sqm.spi.SqmCreationContext
getNodeBuilder
-
Constructor Details
-
SessionFactoryImpl
public SessionFactoryImpl(MetadataImplementor bootMetamodel, SessionFactoryOptions options, BootstrapContext bootstrapContext)
-
-
Method Details
-
openSession
Description copied from interface:SessionFactoryImplementor
OverridesSessionFactory.openSession()
to widen the return type: this is useful for internal code depending onSessionFactoryImplementor
as it would otherwise need to frequently resort to casting to the internal contract.- Specified by:
openSession
in interfaceSessionFactory
- Specified by:
openSession
in interfaceSessionFactoryImplementor
- Returns:
- the opened
Session
. - Throws:
HibernateException
- Indicates a problem opening the session; pretty rare here.
-
openTemporarySession
Description copied from interface:SessionFactoryImplementor
Get a non-transactional "current" session (used by hibernate-envers)- Specified by:
openTemporarySession
in interfaceSessionFactoryImplementor
- Throws:
HibernateException
-
getCurrentSession
Description copied from interface:SessionFactory
Obtains the current session, an instance ofSession
implicitly associated with some context or scope. For example, the session might be associated with the current thread, or with the current JTA transaction.The context used for scoping the current session (that is, the definition of what precisely "current" means here) is determined by an implementation of
CurrentSessionContext
. An implementation may be selected using the configuration property "hibernate.current_session_context_class".If no
CurrentSessionContext
is explicitly configured, but JTA support is enabled, thenJTASessionContext
is used, and the current session is scoped to the active JTA transaction.- Specified by:
getCurrentSession
in interfaceSessionFactory
- Returns:
- The current session.
- Throws:
HibernateException
- Indicates an issue locating a suitable current session.- See Also:
-
withOptions
Description copied from interface:SessionFactory
Obtain a session builder for creating newSession
s with certain customized options.- Specified by:
withOptions
in interfaceSessionFactory
- Specified by:
withOptions
in interfaceSessionFactoryImplementor
- Returns:
- The session builder
-
withStatelessOptions
Description copied from interface:SessionFactory
Obtain aStatelessSession
builder.- Specified by:
withStatelessOptions
in interfaceSessionFactory
- Returns:
- The stateless session builder
-
openStatelessSession
Description copied from interface:SessionFactory
Open a new stateless session.- Specified by:
openStatelessSession
in interfaceSessionFactory
- Returns:
- The created stateless session.
-
openStatelessSession
Description copied from interface:SessionFactory
Open a new stateless session, utilizing the specified JDBCConnection
.- Specified by:
openStatelessSession
in interfaceSessionFactory
- Parameters:
connection
- Connection provided by the application.- Returns:
- The created stateless session.
-
addObserver
- Specified by:
addObserver
in interfaceSessionFactoryImplementor
-
getProperties
- Specified by:
getProperties
in interfaceEntityManagerFactory
-
validateNotClosed
protected void validateNotClosed() -
getUuid
Description copied from interface:SessionFactoryImplementor
Get the UUID for thisSessionFactory
.The value is generated as a
UUID
, but kept as a String.- Specified by:
getUuid
in interfaceSessionFactoryImplementor
- Returns:
- The UUID for this
SessionFactory
. - See Also:
-
getName
Description copied from interface:SessionFactoryImplementor
Access to the name (if one) assigned to theSessionFactory
- Specified by:
getName
in interfaceEntityManagerFactory
- Specified by:
getName
in interfaceSessionFactoryImplementor
- Returns:
- The name for the
SessionFactory
-
getJndiName
Description copied from interface:SessionFactory
The JNDI name, used to bind the SessionFactory to JNDI- Specified by:
getJndiName
in interfaceSessionFactory
-
getTypeConfiguration
- Specified by:
getTypeConfiguration
in interfaceBindingContext
- Specified by:
getTypeConfiguration
in interfaceQueryParameterBindingTypeResolver
- Specified by:
getTypeConfiguration
in interfaceSessionFactoryImplementor
-
getQueryEngine
- Specified by:
getQueryEngine
in interfaceSqmCreationContext
-
getEventEngine
Description copied from interface:SessionFactoryImplementor
Get the EventEngine associated with this SessionFactory- Specified by:
getEventEngine
in interfaceSessionFactoryImplementor
-
getJdbcServices
- Specified by:
getJdbcServices
in interfaceSessionFactoryImplementor
-
getSqlStringGenerationContext
- Specified by:
getSqlStringGenerationContext
in interfaceSessionFactoryImplementor
-
findEntityGraphsByType
Description copied from interface:SessionFactory
Return allEntityGraph
s registered for the given entity type.- Specified by:
findEntityGraphsByType
in interfaceSessionFactory
- See Also:
-
createEntityManager
Description copied from interface:SessionFactory
Create a newSession
.- Specified by:
createEntityManager
in interfaceEntityManagerFactory
- Specified by:
createEntityManager
in interfaceSessionFactory
-
createEntityManager
Description copied from interface:SessionFactory
Create a newSession
, with the given properties.- Specified by:
createEntityManager
in interfaceEntityManagerFactory
- Specified by:
createEntityManager
in interfaceSessionFactory
-
createEntityManager
Description copied from interface:SessionFactory
Create a newSession
, with the given synchronization type.- Specified by:
createEntityManager
in interfaceEntityManagerFactory
- Specified by:
createEntityManager
in interfaceSessionFactory
-
createEntityManager
Description copied from interface:SessionFactory
- Specified by:
createEntityManager
in interfaceEntityManagerFactory
- Specified by:
createEntityManager
in interfaceSessionFactory
-
getCriteriaBuilder
Description copied from interface:SessionFactory
- Specified by:
getCriteriaBuilder
in interfaceEntityManagerFactory
- Specified by:
getCriteriaBuilder
in interfaceSessionFactory
- See Also:
-
getMetamodel
- Specified by:
getMetamodel
in interfaceEntityManagerFactory
-
isOpen
public boolean isOpen()- Specified by:
isOpen
in interfaceEntityManagerFactory
-
findEntityGraphByName
Description copied from interface:SessionFactory
Return the rootEntityGraph
with the given name, ornull
if there is no graph with the given name.- Specified by:
findEntityGraphByName
in interfaceSessionFactory
- Specified by:
findEntityGraphByName
in interfaceSessionFactoryImplementor
- Parameters:
name
- the name given to someNamedEntityGraph
- Returns:
- an instance of
RootGraph
- See Also:
-
bestGuessEntityName
Description copied from interface:SessionFactoryImplementor
The best guess entity name for an entity not in an association- Specified by:
bestGuessEntityName
in interfaceSessionFactoryImplementor
-
getSessionFactoryOptions
Description copied from interface:SessionFactory
Get the options used to build this factory.- Specified by:
getSessionFactoryOptions
in interfaceSessionFactory
- Specified by:
getSessionFactoryOptions
in interfaceSessionFactoryImplementor
- Returns:
- The special options used to build the factory.
-
getInterceptor
-
getReference
- Specified by:
getReference
in interfaceReferenceable
-
getIdentifierType
- Specified by:
getIdentifierType
in interfaceMappingContext
- Throws:
MappingException
-
getIdentifierPropertyName
- Specified by:
getIdentifierPropertyName
in interfaceMappingContext
- Throws:
MappingException
-
getReferencedPropertyType
public Type getReferencedPropertyType(String className, String propertyName) throws MappingException - Specified by:
getReferencedPropertyType
in interfaceMappingContext
- Throws:
MappingException
-
close
Closes the session factory, releasing all held resources.- cleans up used cache regions and "stops" the cache provider.
- close the JDBC connection
- remove the JNDI binding
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceEntityManagerFactory
- Specified by:
close
in interfaceSessionFactory
- Throws:
HibernateException
- Indicates an issue closing the factory.
-
getCache
Description copied from interface:SessionFactory
Obtain direct access to the underlying cache regions.- Specified by:
getCache
in interfaceEntityManagerFactory
- Specified by:
getCache
in interfaceSessionFactory
- Specified by:
getCache
in interfaceSessionFactoryImplementor
- Returns:
- The direct cache access API.
-
getPersistenceUnitUtil
- Specified by:
getPersistenceUnitUtil
in interfaceEntityManagerFactory
-
getTransactionType
- Specified by:
getTransactionType
in interfaceEntityManagerFactory
-
addNamedQuery
- Specified by:
addNamedQuery
in interfaceEntityManagerFactory
-
unwrap
- Specified by:
unwrap
in interfaceEntityManagerFactory
-
addNamedEntityGraph
- Specified by:
addNamedEntityGraph
in interfaceEntityManagerFactory
-
getNamedQueries
- Specified by:
getNamedQueries
in interfaceEntityManagerFactory
-
getNamedEntityGraphs
- Specified by:
getNamedEntityGraphs
in interfaceEntityManagerFactory
-
runInTransaction
- Specified by:
runInTransaction
in interfaceEntityManagerFactory
-
callInTransaction
- Specified by:
callInTransaction
in interfaceEntityManagerFactory
-
isClosed
public boolean isClosed()Description copied from interface:SessionFactory
Is this factory already closed?- Specified by:
isClosed
in interfaceSessionFactory
- Returns:
- True if this factory is already closed; false otherwise.
-
getStatistics
Description copied from interface:SessionFactory
Retrieve the statistics for this factory.- Specified by:
getStatistics
in interfaceSessionFactory
- Specified by:
getStatistics
in interfaceSessionFactoryImplementor
- Returns:
- The statistics.
-
getFilterDefinition
Description copied from interface:SessionFactory
Obtain the definition of a filter by name.- Specified by:
getFilterDefinition
in interfaceSessionFactory
- Specified by:
getFilterDefinition
in interfaceSessionFactoryImplementor
- Parameters:
filterName
- The name of the filter for which to obtain the definition.- Returns:
- The filter definition.
- Throws:
HibernateException
- If no filter defined with the given name.
-
getAutoEnabledFilters
- Specified by:
getAutoEnabledFilters
in interfaceSessionFactoryImplementor
-
containsFetchProfileDefinition
Description copied from interface:SessionFactory
Determine if there is a fetch profile definition registered under the given name.- Specified by:
containsFetchProfileDefinition
in interfaceSessionFactory
- Parameters:
name
- The name to check- Returns:
- True if there is such a fetch profile; false otherwise.
-
getDefinedFilterNames
Description copied from interface:SessionFactory
Obtain the set of names of alldefined filters
.- Specified by:
getDefinedFilterNames
in interfaceSessionFactory
- Returns:
- The set of filter names given by
FilterDef
annotations
-
getDefinedFetchProfileNames
Description copied from interface:SessionFactory
Obtain the set of names of alldefined fetch profiles
.- Specified by:
getDefinedFetchProfileNames
in interfaceSessionFactory
- Returns:
- The set of fetch profile names given by
FetchProfile
annotations.
-
getGenerator
Deprecated.Description copied from interface:SessionFactoryImplementor
Get the identifier generator for the hierarchy- Specified by:
getGenerator
in interfaceSessionFactoryImplementor
-
getRuntimeMetamodels
- Specified by:
getRuntimeMetamodels
in interfaceSessionFactoryImplementor
-
getJpaMetamodel
- Specified by:
getJpaMetamodel
in interfaceBindingContext
-
getMaximumFetchDepth
Description copied from interface:SqlAstCreationContext
When creatingFetch
references, defines a limit to how deep we should join for fetches.- Specified by:
getMaximumFetchDepth
in interfaceSqlAstCreationContext
-
getServiceRegistry
Description copied from interface:SessionFactoryImplementor
Access to theServiceRegistry
for thisSessionFactory
.- Specified by:
getServiceRegistry
in interfaceSessionFactoryImplementor
- Returns:
- The factory's ServiceRegistry
-
getEntityNotFoundDelegate
- Specified by:
getEntityNotFoundDelegate
in interfaceSessionFactoryImplementor
-
getFetchProfile
Description copied from interface:SessionFactoryImplementor
Retrieve fetch profile by name.- Specified by:
getFetchProfile
in interfaceSessionFactoryImplementor
- Parameters:
name
- The name of the profile to retrieve.- Returns:
- The profile definition
-
configuredInterceptor
@Deprecated public static Interceptor configuredInterceptor(Interceptor interceptor, SessionFactoryOptions options) -
configuredInterceptor
public static Interceptor configuredInterceptor(Interceptor interceptor, boolean explicitNoInterceptor, SessionFactoryOptions options) -
getCustomEntityDirtinessStrategy
- Specified by:
getCustomEntityDirtinessStrategy
in interfaceSessionFactoryImplementor
-
getCurrentTenantIdentifierResolver
- Specified by:
getCurrentTenantIdentifierResolver
in interfaceSessionFactoryImplementor
-
getTenantIdentifierJavaType
Description copied from interface:SessionFactoryImplementor
The java type to use for a tenant identifier.- Specified by:
getTenantIdentifierJavaType
in interfaceSessionFactoryImplementor
-
getFastSessionServices
- Specified by:
getFastSessionServices
in interfaceSessionFactoryImplementor
- Returns:
- the
FastSessionServices
for thisSessionFactory
.
-
getWrapperOptions
- Specified by:
getWrapperOptions
in interfaceSessionFactoryImplementor
-
getSchemaManager
Description copied from interface:SessionFactory
ASchemaManager
with the same default catalog and schema as pooled connections belonging to this factory. Intended mostly as a convenience for writing tests.- Specified by:
getSchemaManager
in interfaceEntityManagerFactory
- Specified by:
getSchemaManager
in interfaceSessionFactory
-
classForName
- Specified by:
classForName
in interfaceSqmCreationContext
-
configuredInterceptor(Interceptor, boolean, SessionFactoryOptions)