本文主要是介绍解决Spring Boot Configuration Annotation Processor not configured的问题,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
1. 问题描述
使用
@ConfigurationProperties()
注解时,IDE
突然爆出警告Spring Boot Configuration Annotation Processor not configured
,好在不影响项目运行,强迫症患者表示很不舒服。
2. 问题解决
1. 引入configuration-processor
的依赖
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-configuration-processor</artifactId><optional>true</optional>
</dependency>
2. 此时可能会出现Re-run Spring Boot Configuration Annotation Processor to update generated metadata
的提示,此时只需要隐藏提示或者重新编译项目即可。🎉🎉🤣
这篇关于解决Spring Boot Configuration Annotation Processor not configured的问题的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!