junit之前的写法: //在Before中注入service类private IUserService userService; @Beforepublic void setUp() throws Exception {//使用xml的方式 ApplicationContext applicationContext = new ClassPathXmlApplicationContext(applicationContext.xml);//
junit之前的写法:
Spring与junit整合: 不需要手动创建Spring容器, 自动把bean注入到测试类 1、导入spring-test的依赖, 需要junit
2、在测试类使用spring-test的注解 @RunWith(class) @ContextConfiguration(指定配置文件)
|
2021-06-05
2021-05-27
2021-05-26
2021-06-05
2021-05-16