写点什么

Spring 测试运行的时候提示 Unable to find a @SpringBootConfiguration 错误

作者:HoneyMoose
  • 2022 年 10 月 05 日
    美国
  • 本文字数:329 字

    阅读完需:约 1 分钟

Spring 进行测试的时候提示的错误信息如下:

SEVERE: Caught exception while closing extension context: org.junit.jupiter.engine.descriptor.JupiterEngineExtensionContext@c63c11edjava.lang.IllegalStateException: Unable to find a @SpringBootConfiguration, you need to use @ContextConfiguration or @SpringBootTest(classes=...) with your test
复制代码

 


问题和解决

这个问题的主要原因是测试的包和项目的包的路径可能不一致。

这将会导致测试没有办法找到有关 Spring 有关的配置。

 


对比上面的图,我们就可以看到这个问题。

解决方法就是确定包的路径是一致的,这样 Spring 的测试类可以找到 Spring 有关的配置。

 

https://www.ossez.com/t/spring-unable-to-find-a-springbootconfiguration/14132

用户头像

HoneyMoose

关注

还未添加个人签名 2021.03.06 加入

还未添加个人简介

评论

发布
暂无评论
Spring 测试运行的时候提示 Unable to find a @SpringBootConfiguration 错误_HoneyMoose_InfoQ写作社区