Uses of Interface
org.hibernate.Session
Packages that use Session
Package
Description
This package defines the central Hibernate APIs, beginning with
SessionFactory, which represents an instance of
Hibernate at runtime and is the source of new instances of
Session and StatelessSession,
the most important APIs exposing persistence-related operations for
entities.This package historically provided backward-compatibility
with Hibernate 2.1 APIs which were deprecated in Hibernate 3.
Internal implementations and support around "current session" handling.
SPI-level contracts around "current session" and "current tenant" support.
This package defines some central internal SPI abstractions
used throughout the implementation of Hibernate.
Defines the event types and event listener interfaces for
events produced by the stateful
Session.Implements and extends the JPA-defined entity graph API.
An internal package containing implementations of central Hibernate APIs,
mostly defined in
org.hibernate.Defines an SPI for calling stored procedures and functions.
-
Uses of Session in org.hibernate
Methods in org.hibernate that return SessionModifier and TypeMethodDescriptionSessionFactory.getCurrentSession()Obtains the current session, an instance ofSessionimplicitly associated with some context or scope.SessionBuilder.openSession()Opens a session with the specified options.SessionFactory.openSession()Open aSession.Methods in org.hibernate with parameters of type SessionModifier and TypeMethodDescriptionbooleanCustomEntityDirtinessStrategy.canDirtyCheck(Object entity, EntityPersister persister, Session session) Is this strategy capable of telling whether the given entity is dirty? A return oftruemeans thatCustomEntityDirtinessStrategy.isDirty(java.lang.Object, org.hibernate.persister.entity.EntityPersister, org.hibernate.Session)will be called next as the definitive means to determine whether the entity is dirty.voidCustomEntityDirtinessStrategy.findDirty(Object entity, EntityPersister persister, Session session, CustomEntityDirtinessStrategy.DirtyCheckContext dirtyCheckContext) Callback used to hook into Hibernate algorithm for determination of which attributes have changed.booleanCustomEntityDirtinessStrategy.isDirty(Object entity, EntityPersister persister, Session session) The callback used by Hibernate to determine if the given entity is dirty.voidCustomEntityDirtinessStrategy.resetDirty(Object entity, EntityPersister persister, Session session) Callback used by Hibernate to signal that the entity dirty flag should be cleared.Method parameters in org.hibernate with type arguments of type SessionModifier and TypeMethodDescriptiondefault <R> RSessionFactory.fromSession(Function<Session, R> action) Open aSessionand use it to obtain a value.default <R> RSessionFactory.fromTransaction(Function<Session, R> action) Open aSessionand use it to obtain a value within the bounds of a transaction.default voidOpen aSessionand use it to perform an action.default voidSessionFactory.inTransaction(Consumer<Session> action) Open aSessionand use it to perform an action within the bounds of a transaction. -
Uses of Session in org.hibernate.boot.internal
Methods in org.hibernate.boot.internal with parameters of type SessionModifier and TypeMethodDescriptionbooleanDefaultCustomEntityDirtinessStrategy.canDirtyCheck(Object entity, EntityPersister persister, Session session) voidDefaultCustomEntityDirtinessStrategy.findDirty(Object entity, EntityPersister persister, Session session, CustomEntityDirtinessStrategy.DirtyCheckContext dirtyCheckContext) booleanDefaultCustomEntityDirtinessStrategy.isDirty(Object entity, EntityPersister persister, Session session) voidDefaultCustomEntityDirtinessStrategy.resetDirty(Object entity, EntityPersister persister, Session session) -
Uses of Session in org.hibernate.classic
Methods in org.hibernate.classic with parameters of type SessionModifier and TypeMethodDescriptiondefault booleanCalled when an entity is deleted.default voidLifecycle.onLoad(Session s, Serializable id) Deprecated.default voidCalled after an entity is loaded.default booleanCalled when an entity is saved.default booleanCalled when an entity is passed toSession.update(). -
Uses of Session in org.hibernate.context.internal
Methods in org.hibernate.context.internal that return SessionModifier and TypeMethodDescriptionstatic SessionBinds the given session to the current context for its session factory.protected SessionJTASessionContext.buildOrObtainSession()Strictly provided for subclassing purposes; specifically to allow long-session support.protected SessionThreadLocalSessionContext.buildOrObtainSession()Strictly provided for sub-classing purposes; specifically to allow long-session support.JTASessionContext.currentSession()ManagedSessionContext.currentSession()final SessionThreadLocalSessionContext.currentSession()static SessionManagedSessionContext.unbind(SessionFactory factory) Unbinds the session (if one) current associated with the context for the given session.static SessionThreadLocalSessionContext.unbind(SessionFactory factory) Disassociates a previously bound session from the current thread of execution.protected SessionMethods in org.hibernate.context.internal that return types with arguments of type SessionModifier and TypeMethodDescriptionprotected static Map<SessionFactory,Session> ManagedSessionContext.sessionMap()protected static Map<SessionFactory,Session> ThreadLocalSessionContext.sessionMap()Methods in org.hibernate.context.internal with parameters of type Session -
Uses of Session in org.hibernate.context.spi
Methods in org.hibernate.context.spi that return SessionModifier and TypeMethodDescriptionCurrentSessionContext.currentSession()Retrieve the current session according to the scoping defined by this implementation.Methods in org.hibernate.context.spi with parameters of type SessionModifier and TypeMethodDescriptionprotected voidAbstractCurrentSessionContext.validateExistingSession(Session existingSession) -
Uses of Session in org.hibernate.engine.spi
Subinterfaces of Session in org.hibernate.engine.spiModifier and TypeInterfaceDescriptioninterfaceDefines the "internal contract" betweenSessionand other parts of Hibernate including implementors ofType,EntityPersister, andCollectionPersister.Classes in org.hibernate.engine.spi that implement SessionModifier and TypeClassDescriptionclassA wrapper class that delegates all method invocations to a delegate instance ofSessionImplementor.classThis helper class allows decorating a Session instance, while the instance itself is lazily provided via aSupplier.Methods in org.hibernate.engine.spi that return SessionModifier and TypeMethodDescriptionSessionFactoryDelegatingImpl.getCurrentSession()AbstractDelegatingSessionBuilder.openSession()AbstractDelegatingSharedSessionBuilder.openSession()Constructor parameters in org.hibernate.engine.spi with type arguments of type Session -
Uses of Session in org.hibernate.event.spi
Subinterfaces of Session in org.hibernate.event.spi -
Uses of Session in org.hibernate.graph
Methods in org.hibernate.graph with parameters of type Session -
Uses of Session in org.hibernate.internal
Classes in org.hibernate.internal that implement SessionMethods in org.hibernate.internal that return SessionModifier and TypeMethodDescriptionSessionFactoryImpl.createEntityManager()SessionFactoryImpl.createEntityManager(SynchronizationType synchronizationType) SessionFactoryImpl.createEntityManager(SynchronizationType synchronizationType, Map map) SessionFactoryImpl.createEntityManager(Map map) SessionFactoryImpl.getCurrentSession() -
Uses of Session in org.hibernate.procedure.spi
Methods in org.hibernate.procedure.spi with parameters of type SessionModifier and TypeMethodDescriptiondefault ProcedureCallNamedCallableQueryMemento.makeProcedureCall(Session session) Convert the memento back into an executable (connected) form.
Lifecycle.onLoad(Session, Object)