これが私が実際に行ったことです。これがこの問題の最善の解決策かどうかはわかりませんが、私たちの状況では、最もローカライズされた解決策を探していたので、それが最善のように思えました。
springframework.orm.hibernate3.HibernateTemplate を拡張し、新しい MyHibernateTemplate を作成しました。新しいテンプレートの主な役割は、ほとんどの hibernate3.HibernateTemplate が最終的に導く doExecute メソッドをオーバーライドし、古い SessionFactoryUtils (isSessionTransactional や applyTransactionTimeout など) によって提供された機能の一部を提供することです。
新しい doExecute は古いもののロジックを複製しますが、セッションを取得する SessionFactoryUtils.getNewSession の代わりに、最初に開いているセッション getSessionFactory().getCurrentSession() を探しようとします。
boolean newSessionOpened = false;
Session session;
if (enforceNewSession){
session = SessionFactoryUtils.openSession(getSessionFactory());
newSessionOpened = true;
} else {
try {
// look for an open session
session = getSessionFactory().getCurrentSession();
}
catch (HibernateException ex) {
try {
// if there isn't an open session, open one yourself
session = getSessionFactory().openSession();
newSessionOpened = true;
} catch (HibernateException e) {
throw new DataAccessResourceFailureException("Could not open Hibernate Session", ex);
}
}
}
// is the open session, is a session in a current transaction?
boolean existingTransaction = (!enforceNewSession &&
(!isAllowCreate() || isSessionTransactional(session, getSessionFactory())));
このセッションを手動で閉じる必要があります。
finally {
// if session was used in an existing transaction restore old settings
if (existingTransaction) {
//logger.debug("Not closing pre-bound Hibernate Session after HibernateTemplate");
disableFilters(session);
if (previousFlushMode != null) {
session.setFlushMode(previousFlushMode);
}
}
// if not and a new session was opened close it
else {
// Never use deferred close for an explicitly new Session.
if (newSessionOpened) {
SessionFactoryUtils.closeSession(session);
//_log.info("Closing opened Hibernate session");
}
}
私はこの答えを短くしようとしていますが、質問がある場合は、この問題についてさらに詳しく説明できます.