java.lang.illegalstateexception: unable to find a @springbootconfiguration, you need to use @contextconfiguration or @springboottest(classes=...) with your test
时间: 2023-04-28 19:05:45 浏览: 225
TEX家族-android异常 java.lang.illegalstateexception解决方法
这个错误信息表明你在测试中没有找到 @SpringBootConfiguration 注解,你需要在测试类上使用 @ContextConfiguration 或 @SpringBootTest(classes=...) 来加载 Spring 配置。
阅读全文