4

我正在做单元测试,我希望所有提交给 MySQL 数据库的数据都将被回滚……但事实并非如此。数据正在提交,即使我的日志显示正在发生回滚。我已经为此苦苦挣扎了几天,所以我的设置发生了很大变化,这是我当前的设置。

登录DAOTest.java:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"file:web/WEB-INF/applicationContext-test.xml", "file:web/WEB-INF/dispatcher-servlet-test.xml"})
@TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = true)
public class UserServiceTest {

  private UserService userService;

  @Test
  public void should_return_true_when_user_is_logged_in ()
          throws Exception
  {
    String[] usernames = {"a","b","c","d"};

    for (String username : usernames)
    {
      userService.logUserIn(username);
      assertThat(userService.isUserLoggedIn(username), is(equalTo(true)));
    }
  }

ApplicationContext-Text.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:p="http://www.springframework.org/schema/p"
       xmlns:aop="http://www.springframework.org/schema/aop"
       xmlns:tx="http://www.springframework.org/schema/tx"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
       http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
       http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">

  <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
          <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
          <property name="url" value="jdbc:mysql://localhost:3306/******"/>
          <property name="username" value="*****"/>
          <property name="password" value="*****"/>
  </bean>

  <tx:annotation-driven transaction-manager="transactionManager"/>

  <bean id="userService" class="Service.UserService">
    <property name="userDAO" ref="userDAO"/>
  </bean>

  <bean id="userDAO" class="DAO.UserDAO">
    <property name="hibernateTemplate" ref="hibernateTemplate"/>
  </bean>

  <bean id="sessionFactory" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
    <property name="dataSource" ref="dataSource"/>
    <property name="mappingResources">
      <list>
        <value>/himapping/User.hbm.xml</value>
        <value>/himapping/setup.hbm.xml</value>
        <value>/himapping/UserHistory.hbm.xml</value>
      </list>
    </property>
    <property name="hibernateProperties">
      <props>
        <prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>
        <prop key="hibernate.show_sql">true</prop>
      </props>
    </property>
  </bean>

  <bean id="transactionManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager"
          p:sessionFactory-ref="sessionFactory"/>

  <bean id="hibernateTemplate" class="org.springframework.orm.hibernate3.HibernateTemplate">
    <property name="sessionFactory">
      <ref bean="sessionFactory"/>
    </property>
  </bean>

</beans>

我一直在阅读有关该问题的信息,并且已经检查以确保 MySQL 数据库表已设置为使用 InnoDB。此外,我能够成功地在我的测试套件之外实现事务的回滚。所以这一定是我的某种不正确的设置。

任何帮助将不胜感激 :)

4

5 回答 5

12

问题原来是连接在事务可以回滚之前自动提交。我必须更改我的 dataSource bean 以包含 defaultAutoCommit 属性:

<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
  <property name="driverClassName" value="com.mysql.jdbc.Driver"/>
  <property name="url" value="jdbc:mysql://localhost:3306/test"/>
  <property name="username" value="root"/>
  <property name="password" value="Ecosim07"/>
  <property name="defaultAutoCommit" value="false" /> 
</bean>
于 2010-05-16T18:30:44.727 回答
6

对我来说 defaultAutoCommit 和 @Transactional 没有帮助。我不得不将数据库类型更改为 InnoDB

于 2011-05-20T13:40:15.137 回答
1

解决问题的另一种方法:

而不是使用:

<prop key="hibernate.dialect">org.hibernate.dialect.MySQLDialect</prop>

,默认创建一个 MyISAM 表,因此不支持事务

尝试使用

<prop key="hibernate.dialect">org.hibernate.dialect.MySQLInnoDBDialect</prop>

,它创建 InnoDB 表,因此支持事务。

于 2011-07-19T09:04:38.167 回答
1

这个必须用

@TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = true)
@TestExecutionListeners({ TransactionalTestExecutionListener.class })
@Transactional

TransactionalTestExecutionListener 包含 isRollback() 在测试方法之后回滚事务。

于 2014-05-31T08:06:52.343 回答
0

我希望我是对的,这是一个简单的。您在测试类上缺少 @Transactional 注释。这意味着测试方法本身没有在事务中运行,因此没有什么可以回滚的。希望这可以帮助。

于 2010-05-14T11:20:27.360 回答