SpringBoot测试类启动错误

SpringBoot 测试类启动错误 java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=…) with your test

复制代码

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
报错

java.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
......
......
......
......
......
......
......

复制代码

我当时运行 SpringBoot 测试类的时候踩这个坑,当时的解决办法就是,原本的包名为 test 现在改为 panfeng 就行了.

img

这里的主配置类也就是PanfengUploadApplication所在包是 java 下的 panfeng

所以测试类的FastDFSTest也要在 java 下的 panfeng

Licensed under CC BY-NC-SA 4.0
最后更新于 Jan 06, 2025 05:52 UTC
comments powered by Disqus
Built with Hugo
主题 StackJimmy 设计
Caret Up