|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.orm.hibernate.SessionFactoryUtils
Helper class featuring methods for Hibernate session handling, allowing for reuse of Hibernate Session instances within transactions.
Supports synchronization with both Spring-managed JTA transactions
(i.e. JtaTransactionManager) and non-Spring JTA transactions (i.e. plain JTA
or EJB CMT). See the getSession
version with all parameters
for details.
Used internally by HibernateTemplate, HibernateInterceptor, and HibernateTransactionManager. Can also be used directly in application code, e.g. in combination with HibernateInterceptor.
Note: Spring's Hibernate support requires Hibernate 2.1 (as of Spring 1.0).
getSession(SessionFactory, Interceptor, SQLExceptionTranslator, boolean)
,
HibernateTemplate
,
HibernateInterceptor
,
HibernateTransactionManager
,
JtaTransactionManager
Field Summary | |
static int |
SESSION_SYNCHRONIZATION_ORDER
Order value for TransactionSynchronization objects that clean up Hibernate Sessions. |
Constructor Summary | |
SessionFactoryUtils()
|
Method Summary | |
static void |
applyTransactionTimeout(Criteria criteria,
SessionFactory sessionFactory)
Apply the current transaction timeout, if any, to the given Hibernate Criteria object. |
static void |
applyTransactionTimeout(Query query,
SessionFactory sessionFactory)
Apply the current transaction timeout, if any, to the given Hibernate Query object. |
static void |
closeSessionIfNecessary(Session session,
SessionFactory sessionFactory)
Close the given Session, created via the given factory, if it isn't bound to the thread. |
static DataAccessException |
convertHibernateAccessException(HibernateException ex)
Convert the given HibernateException to an appropriate exception from the org.springframework.dao hierarchy. |
static DataSource |
getDataSource(SessionFactory sessionFactory)
Determine the DataSource of the given SessionFactory. |
static TransactionManager |
getJtaTransactionManager(SessionFactory sessionFactory,
Session session)
Try to retrieve the JTA TransactionManager from the given SessionFactory and/or Session. |
static Session |
getNewSession(SessionFactory sessionFactory)
Get a new Hibernate Session from the given SessionFactory. |
static Session |
getNewSession(SessionFactory sessionFactory,
Interceptor entityInterceptor)
Get a new Hibernate Session from the given SessionFactory. |
static Session |
getSession(SessionFactory sessionFactory,
boolean allowCreate)
Get a Hibernate Session for the given SessionFactory. |
static Session |
getSession(SessionFactory sessionFactory,
Interceptor entityInterceptor,
SQLExceptionTranslator jdbcExceptionTranslator)
Get a Hibernate Session for the given SessionFactory. |
static Session |
getSession(SessionFactory sessionFactory,
Interceptor entityInterceptor,
SQLExceptionTranslator jdbcExceptionTranslator,
boolean allowSynchronization)
Get a Hibernate Session for the given SessionFactory. |
static void |
initDeferredClose(SessionFactory sessionFactory)
Initialize deferred close for the current thread and the given SessionFactory. |
static boolean |
isDeferredCloseActive(SessionFactory sessionFactory)
Return if deferred close is active for the current thread and the given SessionFactory. |
static boolean |
isSessionTransactional(Session session,
SessionFactory sessionFactory)
Return whether the given Hibernate Session is transactional, that is, bound to the current thread by Spring's transaction facilities. |
static SQLExceptionTranslator |
newJdbcExceptionTranslator(SessionFactory sessionFactory)
Create an appropriate SQLExceptionTranslator for the given SessionFactory. |
static void |
processDeferredClose(SessionFactory sessionFactory)
Process Sessions that have been registered for deferred close for the given SessionFactory. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
public static final int SESSION_SYNCHRONIZATION_ORDER
DataSourceUtils.CONNECTION_SYNCHRONIZATION_ORDER
,
Constant Field ValuesConstructor Detail |
public SessionFactoryUtils()
Method Detail |
public static DataSource getDataSource(SessionFactory sessionFactory)
sessionFactory
- the SessionFactory to check
SessionFactoryImplementor.getConnectionProvider()
,
LocalDataSourceConnectionProvider
public static SQLExceptionTranslator newJdbcExceptionTranslator(SessionFactory sessionFactory)
sessionFactory
- the SessionFactory to create the translator for
getDataSource(net.sf.hibernate.SessionFactory)
,
SQLErrorCodeSQLExceptionTranslator
,
SQLStateSQLExceptionTranslator
public static TransactionManager getJtaTransactionManager(SessionFactory sessionFactory, Session session)
sessionFactory
- Hibernate SessionFactorysession
- Hibernate Session (can also be null)
TransactionManager
,
SessionFactoryImplementor.getTransactionManager()
,
Session.getSessionFactory()
,
SessionFactoryImpl
,
JCASessionFactoryImpl
public static Session getSession(SessionFactory sessionFactory, boolean allowCreate) throws DataAccessResourceFailureException, IllegalStateException
This is the getSession
method used by typical data access code,
in combination with closeSessionIfNecessary
called when done with
the Session. Note that HibernateTemplate allows to write data access code
without caring about such resource handling.
Supports synchronization with both Spring-managed JTA transactions
(i.e. JtaTransactionManager) and non-Spring JTA transactions (i.e. plain JTA
or EJB CMT). See the getSession
version with all parameters
for details.
sessionFactory
- Hibernate SessionFactory to create the session withallowCreate
- if a new Session should be created if no thread-bound found
DataAccessResourceFailureException
- if the Session couldn't be created
IllegalStateException
- if no thread-bound Session found and allowCreate falsegetSession(SessionFactory, Interceptor, SQLExceptionTranslator, boolean)
,
closeSessionIfNecessary(net.sf.hibernate.Session, net.sf.hibernate.SessionFactory)
,
HibernateTemplate
public static Session getSession(SessionFactory sessionFactory, Interceptor entityInterceptor, SQLExceptionTranslator jdbcExceptionTranslator)
Supports synchronization with both Spring-managed JTA transactions
(i.e. JtaTransactionManager) and non-Spring JTA transactions (i.e. plain JTA
or EJB CMT). See the full getSession
version for details.
sessionFactory
- Hibernate SessionFactory to create the session withentityInterceptor
- Hibernate entity interceptor, or null if nonejdbcExceptionTranslator
- SQLExcepionTranslator to use for flushing the
Session on transaction synchronization (can be null; only used when actually
registering a transaction synchronization)
DataAccessResourceFailureException
- if the Session couldn't be createdgetSession(SessionFactory, Interceptor, SQLExceptionTranslator, boolean)
public static Session getSession(SessionFactory sessionFactory, Interceptor entityInterceptor, SQLExceptionTranslator jdbcExceptionTranslator, boolean allowSynchronization) throws DataAccessResourceFailureException
Supports synchronization with Spring-managed JTA transactions (i.e. JtaTransactionManager) via TransactionSynchronizationManager, to allow for transaction-scoped Hibernate Sessions and proper transactional handling of the JVM-level cache. This will only occur if "allowSynchronization" is true.
Supports synchronization with non-Spring JTA transactions (i.e. plain JTA or EJB CMT) via TransactionSynchronizationManager, to allow for transaction-scoped Hibernate Sessions without JtaTransactionManager. This only applies when a JTA TransactionManagerLookup is specified in the Hibernate configuration, and when "allowSynchronization" is true.
Supports setting a Session-level Hibernate entity interceptor that allows to inspect and change property values before writing to and reading from the database. Such an interceptor can also be set at the SessionFactory level (i.e. on LocalSessionFactoryBean), on HibernateTransactionManager, or on HibernateInterceptor/HibernateTemplate.
sessionFactory
- Hibernate SessionFactory to create the session withentityInterceptor
- Hibernate entity interceptor, or null if nonejdbcExceptionTranslator
- SQLExcepionTranslator to use for flushing the
Session on transaction synchronization (can be null; only used when actually
registering a transaction synchronization)allowSynchronization
- if a new Hibernate Session is supposed to be
registered with transaction synchronization (if synchronization is active).
This will always be true for typical data access code.
DataAccessResourceFailureException
- if the Session couldn't be createdLocalSessionFactoryBean.setEntityInterceptor(net.sf.hibernate.Interceptor)
,
HibernateAccessor.setEntityInterceptor(net.sf.hibernate.Interceptor)
,
HibernateAccessor.setEntityInterceptor(net.sf.hibernate.Interceptor)
,
HibernateTransactionManager
,
JtaTransactionManager
,
TransactionSynchronizationManager
public static Session getNewSession(SessionFactory sessionFactory)
Within a transaction, this method will create a new Session that shares the transaction's JDBC Connection. More specifically, it will use the same JDBC Connection as the pre-bound Hibernate Session.
sessionFactory
- Hibernate SessionFactory to create the session with
public static Session getNewSession(SessionFactory sessionFactory, Interceptor entityInterceptor)
Within a transaction, this method will create a new Session that shares the transaction's JDBC Connection. More specifically, it will use the same JDBC Connection as the pre-bound Hibernate Session.
sessionFactory
- Hibernate SessionFactory to create the session withentityInterceptor
- Hibernate entity interceptor, or null if none
public static boolean isSessionTransactional(Session session, SessionFactory sessionFactory)
session
- the Hibernate Session to checksessionFactory
- Hibernate SessionFactory that the Session was created with
public static void applyTransactionTimeout(Query query, SessionFactory sessionFactory)
query
- the Hibernate Query objectsessionFactory
- Hibernate SessionFactory that the Query was created forQuery.setTimeout(int)
public static void applyTransactionTimeout(Criteria criteria, SessionFactory sessionFactory)
criteria
- the Hibernate Criteria objectsessionFactory
- Hibernate SessionFactory that the Criteria was created forCriteria.setTimeout(int)
public static DataAccessException convertHibernateAccessException(HibernateException ex)
ex
- HibernateException that occured
HibernateAccessor.convertHibernateAccessException(net.sf.hibernate.HibernateException)
,
HibernateAccessor.convertJdbcAccessException(java.sql.SQLException)
,
HibernateTransactionManager.convertHibernateAccessException(net.sf.hibernate.HibernateException)
,
HibernateTransactionManager.convertJdbcAccessException(java.sql.SQLException)
,
JDBCException.getSQLException()
,
SQLExceptionTranslator
public static boolean isDeferredCloseActive(SessionFactory sessionFactory)
sessionFactory
- the Hibernate SessionFactory to checkpublic static void initDeferredClose(SessionFactory sessionFactory)
Used by OpenSessionInViewFilter and OpenSessionInViewInterceptor when not configured for a single session.
sessionFactory
- Hibernate SessionFactoryprocessDeferredClose(net.sf.hibernate.SessionFactory)
,
closeSessionIfNecessary(net.sf.hibernate.Session, net.sf.hibernate.SessionFactory)
,
OpenSessionInViewFilter.setSingleSession(boolean)
,
OpenSessionInViewInterceptor.setSingleSession(boolean)
public static void processDeferredClose(SessionFactory sessionFactory)
sessionFactory
- Hibernate SessionFactoryinitDeferredClose(net.sf.hibernate.SessionFactory)
,
closeSessionIfNecessary(net.sf.hibernate.Session, net.sf.hibernate.SessionFactory)
public static void closeSessionIfNecessary(Session session, SessionFactory sessionFactory)
session
- Session to closesessionFactory
- Hibernate SessionFactory that the Session was created with
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |