SpringBootTest异常
2020-02-07 本文已影响0人
cjlynn
springboot test无法启动出现异常
@RunWith(SpringRunner.class)
@SpringBootTest
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...)
结果发现是测试类包不跟启动类包一致,修改一致即可。