如何将Spring与Hibernate会话和事务pipe理集成?

我是冬眠和spring的初学者。 我已经了解了hibernate事务划分(至less我是这么认为的)。 但是在编写这样几个方法之后:

sessionFactory.getCurrentSession().beginTransaction(); //do something here sessionFactory.getCurrentSession().endTransaction(); 

我开始想避免它,并希望在我的方法之外自动完成,这样我只写“//在这里做某事”部分。 我已经阅读了关于TransactionProxyFactoryBean,并认为XMLconfiguration是非常长的,必须重复每个类我想使交易,所以如果可能我要避免使用它。

我试图使用@Transactional,但它根本不工作。 我在我的applicationContext.xml中有这些行

 <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <property name="configLocation" value="classpath:hibernate.cfg.xml" /> </bean> <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"> <property name="dataSource" ref="dataSource" /> <property name="sessionFactory" ref="sessionFactory" /> </bean> <tx:annotation-driven transaction-manager="transactionManager" /> 

我已经用@Transactional标记了我的服务类,但是我总是得到“xxx没有活动事务无效”。 这是一个示例代码给我一个错误(在unit testingbtw中运行):

 @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "classpath:applicationContext.xml" }) @TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = true) public class UserServiceTest { @Resource private UserService userService; @Test public void testAddUser() { User us = new User(); us.setName("any name"); userService.addUser(us); } } 

在这种情况下,确切的错误消息是:“org.hibernate.HibernateException:如果没有活动事务,则保存无效”。

更新 :我试图从unit testing(即从实际的Web应用程序)调用userService.addUser()方法,我也得到了同样的错误。

这是我的hibernate.cfg.xml:

 <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"> <hibernate-configuration> <session-factory> <!-- JDBC connection pool (use the built-in) --> <property name="connection.pool_size">1</property> <!-- SQL dialect --> <property name="dialect">org.hibernate.dialect.MySQLDialect</property> <!-- Enable Hibernate's automatic session context management --> <property name="current_session_context_class">thread</property> <!-- Disable the second-level cache --> <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property> <!-- Echo all executed SQL to stdout --> <property name="show_sql">true</property> <!-- Drop and re-create the database schema on startup --> <property name="hbm2ddl.auto">update</property> <!-- all my mapping resources here --> </session-factory> </hibernate-configuration> 

userService类标记为@Transactional。 我使用的是hibernate 3.3.2和spring 2.5.6。

我可以就如何解决这个问题提供一些build议吗?

删除以下行,它会干扰Springpipe理的事务:

 <property name="current_session_context_class">thread</property> 

@hephestos:参数current_session_context_class的值决定了会话(Hibernate会话)必须绑定的上下文。

默认情况下,它与当前正在运行的线程绑定。 但是,当使用“jta”来pipe理事务时,将此参数的值更改为“jta”会将会话绑定到当前的JTA事务上下文。

基本上它定义了会话的上下文。 更多信息: http : //docs.jboss.org/hibernate/orm/3.3/reference/en/html/architecture.html#architecture-current-session