同样是测试,JUnit和Spring TestContext相比,Spring TestContext优势如下:
  1.Spring TestContext可以手动设置测试事务回滚,不破坏数据现场
  2.在测试类中不用手动装配bean,只要一个@Autowired即可自动装配
  ----------------分割线---------------------------
  本文记录web project和java project如何使用TestContext测试框架,首先介绍web project
  现总结如何使用Spring TestContext测试框架:
  1.测试框架环境搭建
  要保证你的项目是web project,这样在WebRoot/WEB-INF/lib包中引入spring-test.jar包即可。
  (jar包位置:我用的是spring-framework-2.5.5,在这个文件夹中/dist/modules下有这个spring-test.jar)
  注意保证你的JUnit版本好在4.5以上,否则可能会不支持JUnit4.5以下版本。
  2.使用TestContext测试框架
  applicationContext.xml文件如下,我放在了src下面
  
  <?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:context="http://www.springframework.org/schema/context"
  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/context http://www.springframework.org/schema/context/spring-context-2.5.xsd
  http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
  <!-- Annotation声明 -->
  <context:annotation-config />
  <context:component-scan base-package="com.huohuo" />
  <!-- 事务声明 -->
  <tx:annotation-driven transaction-manager="txManager"/>
  <!-- 配置dataSource数据源 -->
  <bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource" destroy-method="close">
  <property name="driverClassName">
  <value>com.mysql.jdbc.Driver</value>
  </property>
  <property name="url">
  <value>jdbc:mysql://localhost:3306/spring</value>
  </property>
  <property name="username">
  <value>root</value>
  </property>
  <property name="password">
  <value></value>
  </property>
  </bean>
  <!-- 配置sessionFactory -->
  <bean id="sessionFactory" class="org.springframework.orm.hibernate3.annotation.AnnotationSessionFactoryBean">   
  <property name="dataSource" ref="dataSource" /> 
  <property name="annotatedClasses">           
  <list>
  <value>com.huohuo.domain.User</value>
  <value>com.huohuo.domain.Log</value>
  </list>
  </property> 
  <property name="hibernateProperties">
  <props>
  <prop key="hibernate.dialect">
  org.hibernate.dialect.MySQLDialect
  </prop>
  <prop key="hibernate.show_sql">true</prop>
  <prop key="hbm2ddl.auto">update</prop>
  </props>
  </property>
  </bean>
  <!-- 配置事务TXManager -->
  <bean id="txManager"    class="org.springframework.orm.hibernate3.HibernateTransactionManager">
  <property name="sessionFactory" ref="sessionFactory" />
  </bean>               
  </beans>
  userServiceTest类代码如下:
  package com.huohuo.test;
  import org.junit.Test;
  import org.junit.runner.RunWith;
  import org.springframework.beans.factory.annotation.Autowired;
  import org.springframework.test.annotation.Rollback;
  import org.springframework.test.context.ContextConfiguration;
  import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
  import org.springframework.test.context.transaction.TransactionConfiguration;
  import org.springframework.transaction.annotation.Transactional;
  import com.huohuo.service.UserService;
  @RunWith(SpringJUnit4ClassRunner.class)                    
  @ContextConfiguration(locations="/applicationContext.xml")  //Spring配置文件位置
  @TransactionConfiguration(transactionManager="txManager")    //我的事务bean 的id为txManager
  //重要说明:上面这行如果不加,那么会自动寻找名为transactionManager的事务bean,如果你在applicationContext.xml设置的事务bean不是这个,那么要改成你的事务bean的id名字
  @Transactional                    
  public class UserServiceTest {
  @Autowired   //自动装配bean,或者写成@Resource(name="userService")
  private UserService userService;
  @Rollback(false)  //设置事务不回滚,如果不加默认为自动回滚
  @Test
  public void test() {
  userService.saveUserAndLog();
  }
  }