本文主要是介绍ava.lang.IllegalStateException: Unable to find a @SpringBootConfiguration,,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 报错信息:
- 错误的原因:
- 解决办法:
报错信息:
在单元测试的时候报:java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=…) with your test
错误的原因:
1.没有启动类
2.没有加载到启动类 -无法找到@SpringBootConfiguration
解决办法:
在@SpringBootTest
添加
(classes = SpringbootDemoApplication.class)
添加@SpringBootTest()//注解
和
添加@ContextConfiguration
(classes = SpringbootDemoApplication.class)
这篇关于ava.lang.IllegalStateException: Unable to find a @SpringBootConfiguration,的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!