如何将spring与hibernate会话和事务管理集成?

时间:2010-11-27 18:05:58

标签: hibernate spring transactions

我是hibernate和spring的初学者。我已经了解了hibernate事务划分(至少我认为是这样)。但在编写了一些像这样的方法之后:

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

我开始想要避免它,并希望在我的方法之外自动完成它,这样我只能编写“//在这里做某事”部分。我已经阅读了有关TransactionProxyFactoryBean的内容,并认为xml配置非常长,并且必须重复我想要进行事务处理的每个类,所以如果可能的话我想避免使用它。

我尝试使用@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在没有活动事务时无效”。 这是一个给我一个错误的示例代码(在单元测试btw中运行):

@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:如果没有活动事务,则保存无效”。

UPDATE :我尝试从外部单元测试(即从实际的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。

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

2 个答案:

答案 0 :(得分:15)

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

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

答案 1 :(得分:1)

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

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

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

相关问题