本文主要是介绍解决SpringBoot Configuration Annotation Processor not configured,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
版权声明
- 本文原创作者:谷哥的小弟
- 作者博客地址: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>
这篇关于解决SpringBoot Configuration Annotation Processor not configured的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!