有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

支持Spring、Hibernate和Spring事务的java单元测试设置数据库

我想在单元测试中测试dao层和服务层的集成。所以我需要在我的数据库(hsql)中设置一些数据。对于这个设置,我需要在我的测试用例开始时有一个自己的事务,以确保在启动我的测试用例之前,我的所有设置都被提交到数据库中

以下是我想要实现的目标:

// NotTranactional
public void doTest {
  // transaction begins
  setup database
  // commit transaction

  service.doStuff() // doStuff is annotated @Transactional(propagation=Propagation.REQUIRED)
}

以下是我的非工作代码:

<bean id="dataSource"
    class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close"
    p:driverClassName="org.hsqldb.jdbcDriver"
    p:url="jdbc:hsqldb:mem:posmail" p:username="sa"
    p:password="" />

<bean id="sessionFactory"
    class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">
    <property name="dataSource" ref="dataSource" />
    <property name="annotatedClasses">
        <list>        
            <value>de.diandan.asynch.modell.receipt.Position</value>
            <value>de.diandan.asynch.modell.receipt.Receipt</value>
        </list>
    </property>    

    <property name="hibernateProperties">
        <props>
            <prop key="hibernate.connection.useUnicode">true</prop>
            <prop key="hibernate.connection.characterEncoding">UTF-8</prop>
            <prop key="hibernate.connection.charSet">UTF-8</prop>
            <prop key="hibernate.dialect">org.hibernate.dialect.HSQLDialect</prop>
            <prop key="hibernate.show_sql">false</prop>
            <prop key="hibernate.hbm2ddl.auto">update</prop>
            <!-- Enable Hibernate's automatic session context management 
            <prop key="current_session_context_class">thread</prop> -->

            <!-- Disable the second-level cache  -->
            <prop key="cache.provider_class">org.hibernate.cache.NoCacheProvider</prop>

            <prop key="hibernate.show_sql">false</prop>

        </props>
    </property>
</bean>

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

我的测试用例

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations={"/asynchUnit.xml"})
@DirtiesContext(classMode=ClassMode.AFTER_EACH_TEST_METHOD)
public class ReceiptServiceTest implements ApplicationContextAware {
  @Autowired(required=true)
  private UserHome userHome;

  private ApplicationContext context;

  @Before
  @Transactional(propagation=Propagation.REQUIRED)
  public void init() throws Exception {
    User user = InitialCreator.createUser();
    userHome.persist(user);
  }

  @Test
  public void testDoSomething() {
    ...
  }
}

导致这一例外的原因是:

org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here
    at org.springframework.orm.hibernate3.SpringSessionContext.currentSession(SpringSessionContext.java:63)
    at org.hibernate.impl.SessionFactoryImpl.getCurrentSession(SessionFactoryImpl.java:687)
    at de.diandan.asynch.modell.GenericHome.getSession(GenericHome.java:40)
    at de.diandan.asynch.modell.GenericHome.persist(GenericHome.java:53)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:318)
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:196)
    at $Proxy28.persist(Unknown Source)
    at de.diandan.asynch.service.ReceiptServiceTest.init(ReceiptServiceTest.java:63)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:27)
    at org.springframework.test.context.junit4.statements.RunBeforeTestMethodCallbacks.evaluate(RunBeforeTestMethodCallbacks.java:74)
    at org.springframework.test.context.junit4.statements.RunAfterTestMethodCallbacks.evaluate(RunAfterTestMethodCallbacks.java:83)
    at org.springframework.test.context.junit4.statements.SpringRepeat.evaluate(SpringRepeat.java:72)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.runChild(SpringJUnit4ClassRunner.java:231)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
    at org.springframework.test.context.junit4.statements.RunBeforeTestClassCallbacks.evaluate(RunBeforeTestClassCallbacks.java:61)
    at org.springframework.test.context.junit4.statements.RunAfterTestClassCallbacks.evaluate(RunAfterTestClassCallbacks.java:71)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
    at org.springframework.test.context.junit4.SpringJUnit4ClassRunner.run(SpringJUnit4ClassRunner.java:174)
    at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:49)
    at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
    at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:197)

我不知道什么是正确的方式来获得设置数据库周围的事务

我尝试的是:

@Before
@Transactional(propagation=Propagation.REQUIRED)
public void setup() {
  setup database
}

->;Spring似乎没有在@Before注释的方法中启动事务。除此之外,这并不是我真正想要的,因为我的testclass中有很多方法需要稍微不同的设置,所以我需要几种init方法

@Transactional(propagation=Propagation.REQUIRED)
public void setup() {
  setup database
}

public void doTest {
  init();

  service.doStuff() // doStuff is annotated @Transactional(propagation=Propagation.REQUIRED)
}

——>;init似乎没有在事务中启动

我不想做的事:

public void doTest {
  // doing my own transaction-handling
  setup database
  // doing my own transaction-handling

  service.doStuff() // doStuff is annotated @Transactional(propagation=Propagation.REQUIRED)
}

——>;开始混合处理springs事务,我自己似乎也会感到痛苦

@Transactional(propagation=Propagation.REQUIRED)
public void doTest {
  setup database
  service.doStuff()
}

——>;我想测试尽可能真实的情况,所以我的服务应该从一个干净的会话开始,不打开任何事务

那么,为我的测试用例设置数据库的正确方法是什么呢


共 (2) 个答案

  1. # 1 楼答案

    添加以下注释就成功了:

    @TransactionConfiguration(transactionManager="transactionManager", defaultRollback=false)
    @Transactional
    

    以下是生成的完整配置:

    @TransactionConfiguration(transactionManager="transactionManager", defaultRollback=false)
    @Transactional
    @RunWith(SpringJUnit4ClassRunner.class)
    @ConnextConfiguration(locations={"/asynchUnit.xml"})
    @DirtiesContext(classMode=ClassMode.AFTER_EACH_TEST_METHOD)
    public class ReceiptServiceTest implements ApplicationContextAware {
    
  2. # 2 楼答案

    对于面向spring的测试,可以使用spring runner For JUnit:

    @RunWith(SpringJUnit4ClassRunner.class)
    

    记录如下:

    http://static.springsource.org/spring/docs/3.0.0.M3/spring-framework-reference/html/ch10s03.html

    您可能感兴趣的部分是,您能够使用注释对方法进行注释,如下所示:

    @Rollback(false)
    @Test
    public void testProcessWithoutRollback() {
        // ...
    }
    
    
    
    @BeforeTransaction
    public void beforeTransaction() {
        // logic to be executed before a transaction is started
    }
    

    @AfterTransaction
    public void afterTransaction() {
        // logic to be executed after a transaction has ended
    }
    

    你甚至可以使用

    @NotTransactional 
    @Test
    public void testProcessWithoutTransaction() {
        // ...
    }
    

    表示您不想对其应用事务。但是请注意带有以下警告的this文档:

    As of Spring 3.0, @NotTransactional is deprecated in favor of moving the non-transactional test method to a separate (non-transactional) test class or to a @BeforeTransaction or @AfterTransaction method. As an alternative to annotating an entire class with @Transactional, consider annotating individual methods with @Transactional; doing so allows a mix of transactional and non-transactional methods in the same test class without the need for using @NotTransactional.