springboot项目中使用@ConfigurationProperties注解出现Spring Boot Configuration Annotation Processor not configured提示信息的解决办法
在pom.xml文件中加入相关依赖,然后重新加载项目即可
<!--处理@ConfigurationProperties有关的元数据-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>