1. 问题描述
使用
@ConfigurationProperties()
注解时,IDE
突然爆出警告Spring Boot Configuration Annotation Processor not configured
,好在不影响项目运行,强迫症患者表示很不舒服。
2. 问题解决
1. 引入configuration-processor
的依赖
xml
<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
的提示,此时只需要隐藏提示或者重新编译项目即可。🎉🎉🤣