版权声明
- 本文原创作者:谷哥的小弟
- 作者博客地址:http://blog.csdn.net/lfdfhl
问题描述
在使用@ConfigurationProperties注解和@EnableConfigurationProperties注解时,IDEA报错:SpringBoot 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>