小编典典

如何将Spring与休眠会话和事务管理集成在一起?

spring

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

更新:我尝试从外部单元测试(即从实际的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 and spring 2.5.6.

我可以就如何解决此问题提供一些建议吗?


阅读 405

收藏
2020-04-13

共1个答案

小编典典

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

<property name="current_session_context_class">thread</property> 
2020-04-13