欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【SpringBoot】报错:spring boot configuration annotation processor not configured

程序员文章站 2022-03-24 12:37:30
...

报错内容

spring boot configuration annotation processor not configured

解决方法

添加依赖

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>

 

相关标签: SpringBoot