我遇到了Spring3和Hibernate4的問題。 我想用@Transactional來管理休眠事務。我的JUnit測試適用於HSQDB。但是當部署在Tomcat上時,會發生異常。用Spring @Transactional管理Hibernate交易
我嘗試了許多配置,並且使用單元測試的配置包括刪除會話工廠配置中的hibernate.current_session_context_class屬性。然後在服務器模式下,除以下occures:
org.hibernate.HibernateException: No Session found for current thread
at org.springframework.orm.hibernate4.SpringSessionContext.currentSession(SpringSessionContext.java:97)
at org.hibernate.internal.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:990)
at myproject.dao.impl.UserDaoImpl.create(UserDaoImpl.java:37)
當我配置的hibernate.current_session_context_class看重 「線程」,那麼例外是:
org.hibernate.HibernateException: save is not valid without active transaction
at org.hibernate.context.internal.ThreadLocalSessionContext$TransactionProtectionWrapper.invoke(ThreadLocalSessionContext.java:348)
at com.sun.proxy.$Proxy25.save(Unknown Source)
at myproject.dao.impl.UserDaoImpl.create(UserDaoImpl.java:39)
這裏是我的配置:
<beans>
<context:annotation-config />
<tx:annotation-driven transaction-manager="transactionManager"/>
<jee:jndi-lookup id="dataSource" jndi-name="jdbc/MyDataSource"/>
<bean id="sessionFactory" class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<property name="dataSource" ref="dataSource" />
<property name="packagesToScan">
<list>
<value>myproject.dao.entity</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
<prop key="hibernate.show_sql">true</prop>
<prop key="hibernate.connection.pool_size">1</prop>
<prop key="hibernate.current_session_context_class">thread</prop>
<prop key="hibernate.hbm2ddl.auto">update</prop>
</props>
</property>
</bean>
<bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager">
<property name="sessionFactory" ref="sessionFactory" />
</bean>
</beans>
你在哪裏定義事務性註釋,以及你的單元測試如何運行?使用Spring的測試助手類? –
搜索「openSessionInViewFilter」,你的單元測試工作,因爲他們打開和關閉自己的會話。它可能還沒有告訴你的Web應用程序它需要這麼做;因此你的交易沒有一個會話來操作w/in。我會提供更多細節,但我必須暫時運行。我稍後會回頭看看這個問題。 – zmf
非常感謝你的傢伙,它的工作! – hadf