SpringBoot测试失败并报错: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration
·
情况一:
该测试类在测试包test下的包名和类路径java下的包名不一致导致的,修改包名一致即可
由于包名自动生成的缘故导致这两个包名不一致,引发以下报错
java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=…) with your test
解决:修改包名一致,如图
问题解决,这是最好的解决方案
情况二
如果不想修改包名,那么需要在注解上加上@SpringBootTest(classes = xxx.class),来告诉springboot这是一个独立的测试类,注意xxx代表测试方法的类名,如图所示
但这里会产生额外的问题,因为此时springboot已经把该类当成一个独立的测试类了,这意味着这个测试类对应独立的IOC容器,所以此时我们无法在该测试类中注入springboot容器中的组件,案例如下,springboot项目的的路径是com.sobot.demo7(启动类就这这个包下),同理,测试类中com.sobot.demo7路径下测试类,可以正常装配userMapper组件
com.sobot.demo8路径下测试类,则根本无法找到userMapper这个组件
这种情况下测试类DemoApplicationTests中无法注入com.sobot.demo7路径下的组件userMapper
情况三
使用以下注解
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = {JPAConfig.class})
更多推荐
已为社区贡献4条内容
所有评论(0)