Spring4.2.2 JUnit 4事務提出テスト

1386 ワード

Spring 4をアップグレードします.2.2後にJUnit 4で物事をテストして提出してデータを挿入することができないことを発見して、ネット上でいくつか例を参考にしてやっと発見して、Spring 4.2.2のテストケースクラスは継承できません
「A b s t r a c t T r a c t T r a n s c t ionalJUnit 4 SpringContextTests」は、テストの使用例の親に与えられます.
package cn.jaakan.test.util;

import org.junit.runner.RunWith;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("classpath*:/spring-context.xml")
/*
 * Spring4.2.2 JUnit4   "extends AbstractTransactionalJUnit4SpringContextTests"
 */
public abstract class BaseTestCase{

}
使用時:
package cn.jaakan.test.core;

import javax.annotation.Resource;

import org.junit.Test;
import org.springframework.test.annotation.Rollback;

import cn.jaakan.service.core.DeptService;
import cn.jaakan.test.util.BaseTestCase;

public class DeptTest extends BaseTestCase {
	@Resource private DeptService deptService;
	
	@Test
	@Rollback(true)
	public void add(){
		try {
			deptService.create("dept1", " 1", 1, null, "");
		} catch (Exception e) {
			System.out.println(e.getMessage());
		}
	}

	public DeptService getDeptService() {
		return deptService;
	}

	public void setDeptService(DeptService deptService) {
		this.deptService = deptService;
	}
	
	
}