springboot测试类启动无反应的问题
1、使用idea2015 、Junit4.13 启动完全无响应,将junit换4.12版本问题解决
2、这时候又出现了另外一个问题,@Autowired
无法自动注入,找了很久,发现是因为pringboot中需要在单元测试类上添加两个注解@RunWith(SpringRunner.class) 和@SpringBootTest
两个注解
<dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <scope>test</scope> </dependency>