当前位置: 代码迷 >> Java相关 >> SpringTest 使用说明 -构建无污染纯绿色事宜测试框架 (记录用)
  详细解决方案

SpringTest 使用说明 -构建无污染纯绿色事宜测试框架 (记录用)

热度:605   发布时间:2016-04-22 19:55:51.0
SpringTest 使用说明 -构建无污染纯绿色事务测试框架 (记录用)

@ContextConfiguration({"classpath:applicationContext.xml","classpath:spring/buyer/applicationContext-service.xml"})
导入配置文件,这里我的applicationContext配置文件是根据模块来分类的。如果有多个模块就引入多个“applicationContext-service.xml”文件。如果所有的都是写在“applicationContext。xml”中则这样导入:
@ContextConfiguration(locations = "classpath:applicationContext.xml")
@RunWith(SpringJUnit4ClassRunner.class)SpringJUnit支持,由此引入Spring-Test框架支持!
@Transactional这个非常关键,如果不加入这个注解配置,事务控制就会完全失效!
@TransactionConfiguration(transactionManager = "transactionManager", defaultRollback = true)这里的事务关联到配置文件中的事务控制器(transactionManager = "transactionManager"),同时指定自动回滚(defaultRollback = true)。这样做操作的数据才不会污染数据库!

  相关解决方案