使用的test包的版本号要与spring的一致,避免jar包依赖冲突
直接用注解
@RunWith(SpringRunner.class)
@SpringBootTest
@SpringApplicationConfiguration 注解在1.4就被替换了,新版本这个注解已经不能用了
SpringJunit支持,需要引入Spring-Test框架
Web项目,Junit需要模拟ServletContext,因此需要给测试类上加上@WebAppConfiguration
标签:1.4 项目 code 框架 boot jar gap web body
使用的test包的版本号要与spring的一致,避免jar包依赖冲突
直接用注解
@RunWith(SpringRunner.class)
@SpringBootTest
@SpringApplicationConfiguration 注解在1.4就被替换了,新版本这个注解已经不能用了
SpringJunit支持,需要引入Spring-Test框架
Web项目,Junit需要模拟ServletContext,因此需要给测试类上加上@WebAppConfiguration
SpringApplicationConfiguration 这个不能用 解决方案
标签:1.4 项目 code 框架 boot jar gap web body
原文地址:http://www.cnblogs.com/austinspark-jessylu/p/8108717.html