启动spring boot应用程序时bean创建错误

Posted

技术标签:

【中文标题】启动spring boot应用程序时bean创建错误【英文标题】:bean creation error when starting spring boot application 【发布时间】:2021-03-18 17:53:52 【问题描述】:

当我尝试运行我的 Spring Boot 应用程序时,我得到了这个异常:

org.springframework.beans.factory.BeanCreationException: 错误 创建名称为“configurationPropertiesBeans”的bean 类路径资源 [org/springframework/cloud/autoconfigure/ConfigurationPropertiesRebinderAutoConfiguration.class]: 合并 bean 定义的后处理失败;嵌套异常是 java.lang.IllegalStateException:无法自省类 [org.springframework.cloud.context.properties.ConfigurationPropertiesBeans] 从类加载器 [jdk.internal.loader.ClassLoaders$AppClassLoader@3764951d]

我认为是版本不兼容。我在我的 pom.xml 中导入了 open feign,之后它不起作用,但我不知道如何解决这个问题。我使用 open feign 2.2.5.RELEASE。 这是我的 pom.xml:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.4.0</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>
    <groupId>privas.microservice</groupId>
    <artifactId>sellcar</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <name>sellcar</name>
    <description>Demo project for Spring Boot</description>

    <properties>
        <java.version>15</java.version>
        <maven.compiler.target>$java.version</maven.compiler.target>
        <maven.compiler.source>$java.version</maven.compiler.source>
        <spring-cloud.version>Hoxton.SR8</spring-cloud.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>$spring-cloud.version</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>


    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-openfeign</artifactId>
        </dependency>

        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.testng</groupId>
            <artifactId>testng</artifactId>
            <version>RELEASE</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>jakarta.validation</groupId>
            <artifactId>jakarta.validation-api</artifactId>
            <version>2.0.2</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-commons</artifactId>
            <version>2.4.1</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>

</project>

【问题讨论】:

目前没有与 Spring Boot 2.4 兼容的 Spring Cloud 版本。降级 Spring Boot。 2020.0.0-M6 兼容。本月晚些时候正式发布 依赖 org.testng:testng:RELEASE 不存在...最好改用 JUnit Jupiter...此外,我怀疑spring-data-commons:2.4.1 是否正确...保留以下版本通过父代继承... 【参考方案1】:

您需要跟随 Spring Cloud 的 release train 并匹配 Spring-boot starter 的版本。发布火车可在 spring-cloud 网站https://spring.io/projects/spring-cloud

目前的发布火车是: Release train for spring-cloud

【讨论】:

直截了当。谢谢。【参考方案2】:

我遇到了同样的问题,这是由于 Spring Cloud 服务和 Spring Boot 版本问题而发生的。我通过使用https://start.spring.io/ 来生成我的项目来摆脱它。

当您选择项目所需的所有依赖项后,您可以单击 Explore 按钮并检查 pom.xml 文件。

当我在生成项目后尝试将Eureka-client 的依赖项添加到我的pom.xml 时发生了这个问题,因此使用IntelliJ。

我遇到了同样的错误。

然后我再次去 Spring.io 选择我用于我的项目的依赖项以及 Eureka-client 的依赖项,单击 Explore 按钮,看到我需要在下面添加这行代码pom.xml中的java版本

<spring-cloud.version>2020.0.3</spring-cloud.version>

还有这几行:

<dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>$spring-cloud.version</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>
                            <groupId>org.projectlombok</groupId>
                            <artifactId>lombok</artifactId>
                        </exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

所以我只是将它复制粘贴到我现有的pom.xml 并且它有效!

【讨论】:

【参考方案3】:

Spring-Cloud - Hoxton.SR8 与 Spring-boot 2.4.0 不兼容

只需使用其中一种组合:

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.4.0</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

<spring-cloud.version>2020.0.3</spring-cloud.version>

或者

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.3.0</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

<spring-cloud.version>Hoxton.SR8</spring-cloud.version>

【讨论】:

【参考方案4】:

你需要将spring boot版本改为Release版本

来自

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.4.0</version>
    <relativePath/> <!-- lookup parent from repository -->
</parent>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.3.3.RELEASE</version>
    <relativePath /> <!-- lookup parent from repository -->
</parent>

【讨论】:

【参考方案5】:

为了详细说明 @M-deinum 的评论,将 Spring Boot 版本设置为 2.3.4.RELEASE(而不是在我的情况下为 2.4.2)解决了这个问题。在gradle 中,这意味着改变:

plugins 
    id 'org.springframework.boot' version '2.4.2'
    ...

plugins 
    id 'org.springframework.boot' version '2.3.4.RELEASE'
    ...

【讨论】:

以上是关于启动spring boot应用程序时bean创建错误的主要内容,如果未能解决你的问题,请参考以下文章

Spring Boot:创建名为“jpaMappingContext”的bean时出错:java.lang.NullPointerException

spring boot启动不扫描创建bean怎么回事

创建名为“dataSource”+ Spring Boot + Hibernate 的 bean 时出错

spring boot连接数据库时报错无法启动

由于缺少 ServletWebServerFactory bean,Spring Boot jar 无法启动 Web 服务器

在 Spring Boot 中创建数据源时出错