当前位置: 代码迷 >> 综合 >> IDEA中配置类提示Spring Boot Configuration Annotation Processor not configured
  详细解决方案

IDEA中配置类提示Spring Boot Configuration Annotation Processor not configured

热度:85   发布时间:2023-12-25 16:28:03.0

IDEA中对配置类有红色的提示,实际无影响。实际上它是提示我们配置自定义配置的元数据信息生成
在这里插入图片描述
解决方案参考文档:
在这里插入图片描述
解决步骤:

1、添加依赖

<!--  配置文件处理器  -->
<!--让自定义的配置在application.yaml进行自动提示-->
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-configuration-processor</artifactId><optional>true</optional>
</dependency>

2、启动processor
在这里插入图片描述
3、重新编译模块

4、这样就可以在yml文件中有自定义配置的提示信息了

5、自定义配置的元数据信息生成了,我们可以先编写配置类,在 yml 配置即刻会有提示

  相关解决方案