欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用@ConfigurationProperties注解,Spring Boot Configuration Annotation Processor not configured爆红

程序员文章站 2022-03-24 12:37:06
...

问题分析:
在Springboot项目中使用 @ConfigurationProperties 注解会出现以下提示:
使用@ConfigurationProperties注解,Spring Boot Configuration Annotation Processor not configured爆红
解决方法:
在pom.xml中导入spring-boot-configuration-processor依赖

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

问题成功解决!