注意Hibernate4在開發當中的一些改變

Hibernate4的改動較大隻有spring3.1以上版本可以支持,Spring3.1取消了HibernateTemplate,由於Hibernate4的事務管理已經很好了,不用Spring再擴展了。這裏簡單介紹了hibernate4相對於hibernate3配置時出現的錯誤,只列舉了問題和解決方法,詳細原理若是你們感興趣仍是去本身搜吧,網上不少。 java

  1. Spring3.1去掉了HibernateDaoSupport類。hibernate4須要經過getCurrentSession()獲取session。而且設置
    <prop key="hibernate.current_session_context_class">org.springframework.orm.hibernate4.SpringSessionContext</prop>
    (在hibernate3的時候是thread和jta)。 spring

  2. 緩存設置改成<prop key="hibernate.cache.provider_class">net.sf.ehcache.hibernate.EhCacheProvider</prop>
                    <prop key="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory</prop> 數據庫

  3. Spring對hibernate的事務管理,不管是註解方式仍是配置文件方式統一改成:
    <bean id="txManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager" >  
    <property name="sessionFactory"><ref bean="sessionFactory"/>
    </property> 
    </bean> 緩存

  4. getCurrentSession()事務會自動關閉,因此在有所jsp頁面查詢數據都會關閉session。要想在jsp查詢數據庫須要加入:
    org.springframework.orm.hibernate4.support.OpenSessionInViewFilter過濾器。 session

  5. Hibernate分頁出現 ResultSet may only be accessed in a forward direction 須要設置hibernate結果集滾動
     <prop key="jdbc.use_scrollable_resultset">false</prop> jsp



-------------------------------------------------------------------- ide

找到篇好文章,我以前遇到的問題都在這都能找到。其實出現這些問題的關鍵就是hibernate4和hibernate3出現了session管理的變更。 單元測試

spring也做出相應的變更.... 測試

錯誤1:java.lang.NoClassDefFoundError: org/hibernate/cache/CacheProvider ui

緣由:spring的sessionfactory和transactionmanager與支持hibernate3時不一樣。

解決:

 

<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">

<property name="dataSource" ref="dataSource"/>

...

</bean>



<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">

<property name="sessionFactory" ref="sessionFactory"/>

</bean>



錯誤2:java.lang.NoSuchMethodError:org.hibernate.SessionFactory.openSession()Lorg/hibernate/classic/Session

緣由:hibernate4以後,spring31把HibernateDaoSupport去除,包括數據訪問都不須要hibernatetemplate,這意味着dao須要改寫,直接使用hibernate的session和query接口。

解決:爲了改寫dao,足足花了一天時間,而後一個個接口進行單元測試,這是蛋疼的一個主要緣由。


錯誤3:nested exception is org.hibernate.HibernateException: No Session found for current thread

緣由:發現一些bean沒法得到當前session,須要把以前一些方法的事務從NOT_SUPPORT提高到required,readonly=true

見https://jira.springsource.org/browse/SPR-9020, http://www.iteye.com/topic/1120924

解決:

 

<tx:advice id="baseServiceAdvice" transaction-manager="transactionManager">

   <tx:attributes>

      <tx:method name="get*" read-only="true" propagation="REQUIRED"/><!--以前是NOT_SUPPORT-->

      <tx:method name="find*" read-only="true" propagation="REQUIRED"/><!--以前是NOT_SUPPORT-->

      <tx:method name="save*" propagation="REQUIRED"/>

      <tx:method name="update*" propagation="REQUIRED"/>

      <tx:method name="remove*" propagation="REQUIRED"/>

      <tx:method name="add*" propagation="REQUIRED"/>

      <!--默認其餘方法都是REQUIRED-->

      <tx:method name="*"/>

   </tx:attributes>

</tx:advice>



錯誤4:與錯誤3報錯相似,java.lang.NoSuchMethodError:org.hibernate.SessionFactory.openSession()Lorg/hibernate/classic/Session;

        at org.springframework.orm.hibernate3.SessionFactoryUtils.doGetSession(SessionFactoryUtils.java:324) [spring-orm-3.1.1.RELEASE.jar:3.1.1.RELEASE]

        at org.springframework.orm.hibernate3.SessionFactoryUtils.getSession(SessionFactoryUtils.java:202) [spring-orm-3.1.1.RELEASE.jar:3.1.1.RELEASE]

        at org.springframework.orm.hibernate3.support.OpenSessionInViewFilter


緣由:由於opensessioninview filter的問題,若是你的配置仍是hibernate3,須要改成hibernate4 

<filter>

    <filter-name>openSessionInViewFilter</filter-name>

   <filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>

</filter>


--------------------------------------------------------------------

因爲Hibernate4已經徹底能夠實現事務了, 與Spring3.1中的hibernatedao,hibernateTemplete等有衝突,因此Spring3.1裏已經不提供Hibernatedaosupport,HibernateTemplete了,只能用Hibernate原始的方式用session:

        Session session = sessionFactory.openSession();
        Session session = sessionFactory.getCurrentSession();
在basedao裏能夠用注入的sessionFactory獲取session.

注意, 配置事務的時候必須將父類baseServiceImpl也配上,要否則會出現錯誤:No Session found for currentthread, 之前是不須要的

SessionFactory.getCurrentSession()的後臺實現是可拔插的。所以,引入了新的擴展接口 (org.hibernate.context.spi.CurrentSessionContext)和

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


Spring @Transactional聲明式事務管理,」currentSession」的定義爲: 當前被 Spring事務管理器 管理的Session,此時應配置:

hibernate.current_session_context_class=org.springframework.orm.hibernate4.SpringSessionContext。


此處必定注意 使用 hibernate4,在不使用OpenSessionInView模式時,在使用getCurrentSession()時會有以下問題: 當有一個方法list 傳播行爲爲Supports,當在另外一個方法getPage()(無事務)調用list方法時會拋出org.hibernate.HibernateException: No Session found for current thread 異常。 這是由於getCurrentSession()在沒有session的狀況下不會自動建立一個,不知道這是否是Spring3.1實現的bug。 所以最好的解決方案是使用REQUIRED的傳播行爲

相關文章
相關標籤/搜索