spring框架中通过整合junit,可以减少重复代码的编写。
-
1、导入spring整合junit的jar包:spring-test;
-
2、使用junit提供的注解:@RunWith(SpringJUnit4ClassRunner.class),将原有的main方法替换为spring提供的,才能创建ioc容器;
-
3、使用ContextConfiguration注解,告知spring的运行器,spring的ioc容器创建是基于xml的还是注解的,并指明位置。
ContextConfiguration的两个属性:locations:指定xml文件的路径,加上classpath关键字,表示在类路径下;classes:指定配置类的位置,需使用字节码。