Hibernate4的改動較大只有spring3.1以上版本能夠支持,Spring3.1取消了HibernateTemplate,因為Hibernate4的事務(wù)管理已經(jīng)很好了,不用Spring再擴展了。這里簡單介紹了hibernate4相對于hibernate3配置時出現(xiàn)的錯誤,只列舉了問題和解決方法,詳細原理如果大家感興趣還是去自己搜吧,網(wǎng)上很多。
-
Spring3.1去掉了HibernateDaoSupport類。hibernate4需要通過getCurrentSession()獲取session。并且設(shè)置
hibernate.current_session_context_class">org.springframework.orm.hibernate4.SpringSessionContext
(在hibernate3的時候是thread和jta)。
-
緩存設(shè)置改為net.sf.ehcache.hibernate.EhCacheProvider
hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory
-
Spring對hibernate的事務(wù)管理,不論是注解方式還是配置文件方式統(tǒng)一改為:
org.springframework.orm.hibernate4.HibernateTransactionManager" >
-
getCurrentSession()事務(wù)會自動關(guān)閉,所以在有所jsp頁面查詢數(shù)據(jù)都會關(guān)閉session。要想在jsp查詢數(shù)據(jù)庫需要加入:
org.springframework.orm.hibernate4.support.OpenSessionInViewFilter過濾器。
-
Hibernate分頁出現(xiàn) ResultSet may only be accessed in a forward direction 需要設(shè)置hibernate結(jié)果集滾動
jdbc.use_scrollable_resultset">false
--------------------------------------------------------------------
找到篇好文章,我之前遇到的問題都在這都能找到。其實出現(xiàn)這些問題的關(guān)鍵就是hibernate4和hibernate3出現(xiàn)了session管理的變動。
spring也作出相應(yīng)的變動....
錯誤1:java.lang.NoClassDefFoundError: org/hibernate/cache/CacheProvider
原因:spring的sessionfactory和transactionmanager與支持hibernate3時不同。
解決:
...
錯誤2:java.lang.NoSuchMethodError:org.hibernate.SessionFactory.openSession()Lorg/hibernate/classic/Session
原因:hibernate4之后,spring31把HibernateDaoSupport去除,包括數(shù)據(jù)訪問都不需要hibernatetemplate,這意味著dao需要改寫,直接使用hibernate的session和query接口。
解決:為了改寫dao,足足花了一天時間,然后一個個接口進行單元測試,這是蛋疼的一個主要原因。
錯誤3:nested exception is org.hibernate.HibernateException: No Session found for current thread
原因:發(fā)現(xiàn)一些bean無法獲得當(dāng)前session,需要把之前一些方法的事務(wù)從NOT_SUPPORT提升到required,readonly=true
見https://jira./browse/SPR-9020, http://www./topic/1120924
解決:
錯誤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
openSessionInViewFilter
org.springframework.orm.hibernate4.support.OpenSessionInViewFilter
--------------------------------------------------------------------
由于Hibernate4已經(jīng)完全可以實現(xiàn)事務(wù)了, 與Spring3.1中的hibernatedao,hibernateTemplete等有沖突,所以Spring3.1里已經(jīng)不提供Hibernatedaosupport,HibernateTemplete了,只能用Hibernate原始的方式用session:
Session session = sessionFactory.openSession();
Session session = sessionFactory.getCurrentSession();
在basedao里可以用注入的sessionFactory獲取session.
注意, 配置事務(wù)的時候必須將父類baseServiceImpl也配上,要不然會出現(xiàn)錯誤:No Session found for currentthread, 以前是不需要的
SessionFactory.getCurrentSession()的后臺實現(xiàn)是可拔插的。因此,引入了新的擴展接口 (org.hibernate.context.spi.CurrentSessionContext)和
新的配置參數(shù)(hibernate.current_session_context_class),以便對什么是“當(dāng)前session”的范圍和上下文(scope and context)的定義進行拔插。
在Spring @Transactional聲明式事務(wù)管理,”currentSession”的定義為: 當(dāng)前被 Spring事務(wù)管理器 管理的Session,此時應(yīng)配置:
hibernate.current_session_context_class=org.springframework.orm.hibernate4.SpringSessionContext。
此處一定注意 使用 hibernate4,在不使用OpenSessionInView模式時,在使用getCurrentSession()時會有如下問題: 當(dāng)有一個方法list 傳播行為為Supports,當(dāng)在另一個方法getPage()(無事務(wù))調(diào)用list方法時會拋出org.hibernate.HibernateException: No Session found for current thread 異常。 這是因為getCurrentSession()在沒有session的情況下不會自動創(chuàng)建一個,不知道這是不是Spring3.1實現(xiàn)的bug。 因此最好的解決方案是使用REQUIRED的傳播行為。