1. 程式人生 > >Spring @Transactional 宣告式事務管理 getCurrentSession

Spring @Transactional 宣告式事務管理 getCurrentSession

在Spring @Transactional宣告式事務管理的配置中,hibernate.current_session_context_class=thread…

這一句是不能加的…加了就會出錯,具體錯誤為:

org.hibernate.HibernateException: save is not valid without active transaction
at org.hibernate.context.ThreadLocalSessionContext$TransactionProtectionWrapper.invoke(ThreadLocalSessionContext.java:341)
at com.sun.proxy.$Proxy12.save(Unknown Source)
at cn.javass.h4.hello.UserDao.save(UserDao.java:18)

..那為什麼不能加呢?

那是因為在Spring宣告式事務管理中, current Session是繫結到SpringSessionContext中的,而不是ThreadLocalSessionContext中的

先結合Hibernate4.0說說:

從Hibernate3.1開 始,SessionFactory.getCurrentSession()的後臺實現是可拔插的。因此,我們引入了新的擴充套件介面 (org.hibernate.context.spi.CurrentSessionContext)和

新的配置引數(hibernate.current_session_context_class),以便對什麼是“當前session”的範圍和上下文(scope and context)的定義進行拔插。

它定義 了單一的方法,currentSession(),特定的實現用它來負責跟蹤當前的上下文session, SessionFactory.getCurrentSession()通過呼叫sessionContext.currentSession()方法獲得當前session。

這個介面僅有一個方法:

SessioncurrentSession()

Retrieve thecurrent session according to the scoping defined by this implementation.

currentSession()表示 根據當前CurrentSessionContext的實現及定義返回”當前的Session”

這個介面…Hibernate中有3個類實現了這個介面

All Known Implementing Classes:

1: org.hibernate.context.internal.ThreadLocalSessionContext - 當前session通過當前執行的執行緒來跟蹤和界定。

2: org.hibernate.context.internal.JTASessionContext- 當前session根據JTA來跟蹤和界定。這和以前的僅支援JTA的方法是完全一樣的。

3: org.hibernate.context.internal.ManagedSessionContext..

Spring為事務管理,也實現了此介面:

這幾種實現都提供了“每資料庫事務對應一個session”的程式設計模型,也稱作每次請求一個session。Hibernate session的起始和終結由資料庫事務的生存來控制。

hibernate.current_session_context_class 配置引數定義了應該採用哪個org.hibernate.context.spi.CurrentSessionContext實現。

一般而言,此引數的值指明瞭要使用的實 現類的全名,但那兩個內建的實現可以使用簡寫,即"jta"和"thread"。

hibernate.current_session_context_class=thread

實質是:

hibernate.current_session_context_class= org.hibernate.context.internal.ThreadLocalSessionContext

同理:

hibernate.current_session_context_class=jta

實質是:

hibernate.current_session_context_class= org.hibernate.context.internal.JTASessionContext

而在Spring @Transactional宣告式事務管理,”currentSession”的定義為: 當前被 Spring事務管理器 管理的Session,此時應配置:

spring 整合hibernate管理事務後,由Spring的TransactionManager管理事務後, currentSession是繫結到SpringSessionContext的,而不是thread。

此時hibernate.current_session_context_class應該是SpringSessionContext,而它又會在使用LocalSessionFactoryBean時自動的設定。

所以就不需要你去設定current_session_context_class

-   -       - --         -

下面我們來分析一下SessionFactoryImpl, org.hibernate.context.spi.CurrentSessionContext

org.hibernate.context.internal.ThreadLocalSessionContext

這些類的原始碼

1: 分析sessionFactory.getCurrentSession() 我們跟進去

來到SessionFactoryImpl.getCurrentSession()方法:

  1. publicfinalclass SessionFactoryImpl  
  2.       implements SessionFactoryImplementor {  
  3.   . . .  
  4.   privatefinaltransient CurrentSessionContext currentSessionContext;  
  5.   . . .  
  6.   public Session getCurrentSession() throws HibernateException {  
  7.       if ( currentSessionContext == null ) {  
  8.          thrownew HibernateException( "No CurrentSessionContext configured!" );  
  9.       }  
  10.       return currentSessionContext.currentSession();  
  11.   }  
  12. . . .  
  13. }  


SessionFactoryImpl 的currentSessionContext屬性的實際型別就是

由hibernate.current_session_context_class決定的…

2:首先設定: hibernate.current_session_context_class= org.hibernate.context.internal.ThreadLocalSessionContext

   到這一句,currentSessionContext.currentSession()跟進去

  1. publicclass ThreadLocalSessionContext implements CurrentSessionContext {  
  2.     . . .  
  3.    privatestaticfinal ThreadLocal<Map> context = newThreadLocal<Map>();  
  4.    . . .  
  5.    //開啟一個”事務提交後自動關閉”的Session
  6.    protected Session buildOrObtainSession() {  
  7.        return factory.withOptions()  
  8.             .autoClose( isAutoCloseEnabled() )  
  9.             .connectionReleaseMode( getConnectionReleaseMode() )  
  10.             .flushBeforeCompletion( isAutoFlushEnabled() )  
  11.             .openSession();  
  12.     }  
  13.     publicfinal Session currentSession() throws HibernateException {  
  14.       //從執行緒區域性量context中嘗試取出已經繫結到執行緒的Session
  15.       Session current = existingSession( factory );  
  16.       //如果沒有繫結到執行緒的Session
  17.       if (current == null) {  
  18.          //開啟一個”事務提交後自動關閉”的Session
  19.          current = buildOrObtainSession();  
  20.             current.getTransaction().registerSynchronization(buildCleanupSynch() );  
  21.          // wrap the session in thetransaction-protection proxy
  22.          if ( needsWrapping( current ) ) {  
  23.             current = wrap( current );  
  24.          }  
  25.          //將得到的Session繫結到執行緒中:即以<SessionFactory,Session>鍵值對方式設定到執行緒區域性量context
  26.          doBind( current, factory );  
  27.       }  
  28.       return current;  
  29.    }  
  30. . . .  
  31. }  


現在對於hibernate.current_session_context_class= thread時的getCurrentSession()就很清楚了:

1:嘗試取出繫結到執行緒的Session

2:如果沒有,則開啟一個”事務提交後自動關閉”的Session,並將此Session加入到ThreadLocal的Map中.

3:返回Session

  1. Public UserService  
  2. {  
  3.    @Transactional
  4.    publicvoid addUser(User user) throws Exception  
  5.    {  
  6.       Session session = sessionFactory.getCurrentSession();  
  7.       session.save(user);  
  8.    }  
  9. }  


因為加入了@Transactional,執行addUser()方法時,Spring的TransactionManager會自動 Open Sesion, 自動 開啟事務,並且 將此Sesion繫結到SpringSessionContext(實際上是TransactionSynchronizationManager的ThreadLocal的Map)中..

然後到SessionFactoryImpl.getCurrentSesssion()的currentSessionContext.currentSession()這一句,跟進去

  1. publicclass SpringSessionContext implements CurrentSessionContext {  
  2.    privatefinal SessionFactoryImplementor sessionFactory;  
  3.    -  - - - - -  
  4.    public Session currentSession() throws HibernateException {  
  5.     //關鍵就是這一句,Spring實際上會去TransactionSynchronizationManager裡查詢”currentSession”
  6.     Object value = TransactionSynchronizationManager.getResource(this.sessionFactory);  
  7.       if (value instanceof Session) {  
  8.          return (Session) value;  
  9.       }  
  10.       elseif (value instanceof SessionHolder) {  
  11.          SessionHolder sessionHolder = (SessionHolder) value;  
  12.          Session session = sessionHolder.getSession();  
  13.          if (TransactionSynchronizationManager.isSynchronizationActive()&&  
  14.                 !sessionHolder.isSynchronizedWithTransaction()) {  
  15.             TransactionSynchronizationManager.registerSynchronization(  
  16.                    new SpringSessionSynchronization(sessionHolder, this.sessionFactory));  
  17.             sessionHolder.setSynchronizedWithTransaction(true);  
  18.             FlushMode flushMode = session.getFlushMode();  
  19.             if (FlushMode.isManualFlushMode(flushMode)&&  
  20.                    !TransactionSynchronizationManager.isCurrentTransactionReadOnly()){  
  21.                 session.setFlushMode(FlushMode.AUTO);  
  22.                 sessionHolder.setPreviousFlushMode(flushMode);  
  23.             }  
  24.          }  
  25.          return session;  
  26.       }  
  27.       elseif (this.jtaSessionContext != null) {  
  28.          Session session = this.jtaSessionContext.currentSession();  
  29.          if (TransactionSynchronizationManager.isSynchronizationActive()){  
  30.             TransactionSynchronizationManager.registerSynchronization(newSpringFlushSynchronization(session));  
  31.          }  
  32.          return session;  
  33.       }  
  34.       else {  
  35.          thrownew HibernateException("No Session found for current thread");  
  36.       }  
  37.    }  
  38. }  

Object value =TransactionSynchronizationManager.getResource(this.sessionFactory); 關鍵是這一句,跟進去:

  1. publicabstractclass TransactionSynchronizationManager {  
  2.  . . .  
  3.  privatestaticfinal ThreadLocal<Map<Object, Object>> resources;  
  4.  publicstatic Object getResource(Object key) {  
  5.       Object actualKey = TransactionSynchronizationUtils.unwrapResourceIfNecessary(key);  
  6.       //在ThreadLocal的屬性resources裡查詢Session, resources裡以<SessionFactory,SessionHolder>或 <SessionFactory,Session>的鍵值對存放到ThreadLocal的Map中
  7.       Object value = doGetResource(actualKey);  
  8.       if (value != null && logger.isTraceEnabled()) {  
  9.          logger.trace("Retrievedvalue [" + value + "] for key [" + actualKey + "] bound to thread [" +  
  10.                 Thread.currentThread().getName() + "]");  
  11.       }  
  12.       return value;  
  13.    }  
  14.  . ..  
  15. }  

根據以上程式碼,我們可以發現,如果我們通過@Transactional註解配置事務,那麼SpringSessionContext中就不會存在當前的session, Object value = TransactionSynchronizationManager.getResource(this.sessionFactory);    

這個值會是null,這個時候Spring 就會返回"No Session found for current thread"。所以對於SpringSessionContext 來說, @Transactional註解(或者通過tx標籤攔截器等其他方式配置的事務應該也起了同樣的作用,未驗證)很關鍵, getCurrentSession()在SpringSessionContext的情況下(預設情況)必須配置事務才有效。 

現在對於hibernate.current_session_context_class= org.springframework.orm.hibernate4.SpringSessionContext時的getCurrentSession()就很清楚了:

1: @Transactional宣告的方法執行時,Spring的TransactionManager會自動Open Sesion,自動開啟事務,並且將此Sesion繫結到SpringSessionContext(實際上是TransactionSynchronizationManager的ThreadLocal的Map)中..

2:SessionFactory.getCurrentSession()方法執行時,呼叫SpringSessionContext.currentSession()從TransactionSynchronizationManager的上下文中查詢 當前的Session

3:找到後返回當前的Session,找不到,則返回HibernateException("No Sessionfound for current thread")

PS: 從中,我們也知道了,執行SessionFactoryImpl.openSession()時,只是簡單地new 一個SessionBuilder,然後呼叫SessionBuilder.openSession(),得到的Session是不會繫結到任何 org.hibernate.context.spi.CurrentSessionContext 在上下文中的.

////////////////////////////////////////////////////////////////--------------------------------------------------------------------------------------------------------------------------------------- 

總結: hibernate.current_session_context_class=thread(org.hibernate.context.internal.ThreadLocalSessionContext)

與      hibernate.current_session_context_class=org.springframework.orm.hibernate4.SpringSessionContext 時的SessionFactory.getCurrentSession()的不同之處在於: 

 前者在ThreadLocalSessionContext裡的執行緒區域性的Map中查詢Session,

      最終,你會發覺,無論是ThreadLocalSessionContext 或 SpringSessionContext 查詢的"currentSession",都是以類似鍵值對<SessionFactory,Session>的形式存放到ThreadLocal的Map中,也就是說這兩者的上下文都是一個ThreadLocal的Map...查詢時以SessionFactory為鍵來查詢對應的Session,所以在同一執行緒中,一個SessionFactory只能有一個currentSession