java.lang.IllegalStateException Unable to find a @SpringBootConfiguration代码报错

这篇具有很好参考价值的文章主要介绍了java.lang.IllegalStateException Unable to find a @SpringBootConfiguration代码报错。希望对大家有所帮助。如果存在错误或未考虑完全的地方,请大家不吝赐教,您也可以点击"举报违法"按钮提交疑问。


java.lang.IllegalStateException Unable to find a @SpringBootConfiguration代码报错,Bug汇总,java,开发语言,bug


一. 问题场景

使用idea基于springBoot的项目进行单元测试时,出现异常,如下所示:

Test ignored.

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

java.lang.IllegalStateException Unable to find a @SpringBootConfiguration代码报错,Bug汇总,java,开发语言,bug

二. 报错原因

该测试类在运行时找不到启动类,所以报错

三. 解决方案

①检查项目中有没有写启动类,如果没写,赶紧补上

正确的启动类示例代码如下:

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

//声明它为基于springboot的应用程序的启动类
@SpringBootApplication
public class springbootJpaApplication {

    public static void main(String[] args) {
        SpringApplication.run(springbootJpaApplication.class,args);
    }

}

ps:启动类的类名随便写,但推荐见名知义的命名原则

②如果你写了启动类,但是你的测试类所在的包与启动类所在的包不在同一级根目录下

例如:在我的项目中启动类所在的包是com.fc,而测试类则直接写在项目/test/java下没有包

java.lang.IllegalStateException Unable to find a @SpringBootConfiguration代码报错,Bug汇总,java,开发语言,bug

java.lang.IllegalStateException Unable to find a @SpringBootConfiguration代码报错,Bug汇总,java,开发语言,bug

解决措施

1. 将测试类【要进行单元测试的类】置于和启动类一样的目录下【如com.fc】

java.lang.IllegalStateException Unable to find a @SpringBootConfiguration代码报错,Bug汇总,java,开发语言,bug

2. 如果不想把测试类放到和启动类相同的包下,那就给测试类的注解加上@SpringBootTest(classes = {springbootJpaApplication.class})

代码示例如下:

@SpringBootTest(classes = {springbootJpaApplication.class})
public class testJpa {

}

ps:花括号中是你自己写的测试类的反射

以上两种解决方法选其一即可,效果等同。

java.lang.IllegalStateException Unable to find a @SpringBootConfiguration代码报错,Bug汇总,java,开发语言,bug

排错改错成功!!!文章来源地址https://www.toymoban.com/news/detail-581858.html

到了这里,关于java.lang.IllegalStateException Unable to find a @SpringBootConfiguration代码报错的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处: 如若内容造成侵权/违法违规/事实不符,请点击违法举报进行投诉反馈,一经查实,立即删除!

领支付宝红包 赞助服务器费用

相关文章

  • Caused by: java.lang.IllegalStateException: Failed to introspect Class

    1、问题报错如下: 2、问题解析: 意思是:未能反射rabbitmq类包(就是添加了依赖没加载进去);需与ClassNotFindException的错误区分,此异常是引用了没有依赖的类。 3、解决方案: 方案一(如果导入的依赖“scope”标签为值provided,则修改如下): 改为如下所示:(去掉scop

    2024年02月11日
    浏览(52)
  • java.lang.IllegalStateException: Failed to load ApplicationContext报错怎么办

    近期在进行项目开发时,我遇到了一个报错:java.lang.IllegalStateException: Failed to load ApplicationContext 。这个报错的原因可能有很多种,但是通过排查,我成功解决了它。在这里分享一下,希望能对遇到同样报错的开发者有所帮助。 首先,我们先来了解一下这个报错的大致意思。

    2024年02月13日
    浏览(59)
  • Java IDEA java.lang.IllegalStateException: Failed to introspect Class报错原因和解决办法

    发现是因为 org.redisson:redisson.spring.boot.starter 3.10.6这个包引入不进来导致的报错 尝试了clean invalid caches and restart都没法解决后 放大招,查看maven右侧Dependencies每一个点进去看是否有jar包冲突,发现有一个包里有一个redis的包, 怀疑jar包冲突,尝试把这个包exclusion掉,可以成功运

    2024年02月04日
    浏览(53)
  • Caused by: java.lang.IllegalStateException: failed to obtain node locks, tri

    我的情况是生产环境中,elasticsearch突然崩溃,然后起不来了。 我的日志目录在 日志信息为 Caused by: java.lang.IllegalStateException: failed to obtain node locks, tried [[/data/elk_data/my-elk-cluster]] with lock id [0]; maybe these locations are not writable or multiple nodes were started without increasing [node.max_local_sto

    2024年02月12日
    浏览(50)
  • java.lang.IllegalStateException: Failed to load ApplicationContext 在测试方法执行中出现【解决办法】

    报错信息如下: 在SpringBoot项目中遇到报错信息,除了Error那一行的错误信息之外,也要看Caused by后面的报错的原因!!! 本报错信息中的 Cause by:BeanDefinitionStoreException: Failed to parse configuration class [com.sl.pay.PayApplication]; nested exception is org.springframework.context.annotation.ConflictingB

    2024年04月12日
    浏览(48)
  • Caused by: java.lang.IllegalStateException: Failed to introspect Class [springfox.documentation.swag

    java.lang.IllegalStateException: Error processing condition on org.springframework.boot.autoconfigure.context.PropertyPlaceholderAutoConfiguration.propertySourcesPlaceholderConfigurer     at org.springframework.boot.autoconfigure.condition.SpringBootCondition.matches(SpringBootCondition.java:60) ~[spring-boot-autoconfigure-2.2.12.RELEASE.jar:2.2.12.RELEAS

    2024年02月04日
    浏览(89)
  • java.lang.IllegalStateException: failed to req API:/nacos/v1/ns/instance after all servers

    本地微服务注册不上nacos 报错 注意看nacos地址后面少一个8 这是配置的地址 解决办法 去掉nacos地址的http OK

    2024年02月12日
    浏览(57)
  • Unable to make field private final java.lang.Class java.lang.invoke

    java版本是17 mybatis-plus 版本是3.5.1 报错内容如下:  Unable to make field private final java.lang.Class java.lang.invoke.SerializedLambda.capturingClass accessible: module java.base does not \\\"opens java.lang.invoke\\\" to unnamed module @4f6ee6e4 解决方式: idea版本是2023.1.3  shift+F4 或者 Edit configruation... 修改参数 Modify Optio

    2024年02月11日
    浏览(50)
  • Unable to make protected final java.lang.Class java.lang.ClassLoader.defineClass

    在将一个 JDK 8 的项目转移到 JDK 11 的运行环境中时,遇到了如下的问题: 这是由于 JDK 8 中有关反射相关的功能自从 JDK 9 开始就已经被限制了,为了兼容原先的版本,需要在运行项目时添加 --add-opens java.base/java.lang=ALL-UNNAMED 选项来开启这种默认不被允许的行为。 如果是通过

    2024年02月16日
    浏览(38)
  • Flutter问题记录 - Unable to find bundled Java version

    有个紧急问题需要修复,本以为很快就能解决继续休假,没想到项目打开运行后Android端跑不起来了,iOS端正常运行,这就有点莫名其妙,明明放假前还是没问题的,难道我拉取的最新代码有问题?不会吧,谁放假还敲代码啊?🤔️看了下最新的提交记录,还是放假前我提交

    2024年01月16日
    浏览(56)

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

博客赞助

微信扫一扫打赏

请作者喝杯咖啡吧~博客赞助

支付宝扫一扫领取红包,优惠每天领

二维码1

领取红包

二维码2

领红包