gpt4 book ai didi

hibernate - 如何将spring与hibernate session 和事务管理集成?

转载 作者:IT老高 更新时间:2023-10-28 13:52:53 25 4
gpt4 key购买 nike

我是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 在没有事件事务的情况下无效”。这是一个给我一个错误的示例代码(顺便说一句,在单元测试中运行):

@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: save is not valid without active transaction”。

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

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

最佳答案

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

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

关于hibernate - 如何将spring与hibernate session 和事务管理集成?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4293098/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com