问题背景:
使用@ConfigurationProperties(prefix = "person")注解,报错
进行Spring Boot配置文件部署时,发出警告Spring Boot Configuration Annotation Processor not configured,但是不影响运行。
问题解决
1.引入场景,
- 一定要在当前模块下引入,不要在父项目的pom文件中引入,否则不生效
xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>
2.重新构建当前模块

3.在yml文件中,可以提示字段
