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

Spring Boot configuration Annotation Processor not configured

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

yaml 一些配置飘黄

Spring Boot configuration Annotation Processor not configured
特别是自己自定义的一些配置比如:my.thread.core-size
鼠标悬浮提示:Cannot reslove configuration property XXXXXXX
按照提示
Spring Boot configuration Annotation Processor not configured
Spring Boot configuration Annotation Processor not configured
会生成 metadata 文件。

Spring Boot configuration Annotation Processor not configured

解决方法:pom文件加入

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-configuration-processor</artifactId>
    <optional>true</optional>
</dependency>
相关标签: maven spring