已解决:idea提示未配置 Spring Boot 配置注解处理器

Posted 想做CTO的任同学...

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了已解决:idea提示未配置 Spring Boot 配置注解处理器相关的知识,希望对你有一定的参考价值。

文章目录

解决方案

  1. 在pom.xml里添加依赖,完成后并重启项目

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

以上是关于已解决:idea提示未配置 Spring Boot 配置注解处理器的主要内容,如果未能解决你的问题,请参考以下文章

IDEA开发spring boot应用时 application.yml 或 application.properties 自定义属性提示

IDEA中添加spring-boot-configuration-processor依赖但yml文件对自己创建的类没有提示的解决办法

IDEA中Spring boot配置热部署无效问题解决方式(转)

Spring Boot 配置属性的未解决占位符验证

Intellij IDEA 抱怨无法解决 Spring Boot 属性,但它们工作正常

idea中使用spring boot + scala快速开发部署