解决SpringBoot Configuration Annotation Processor not configured


版权声明

  • 本文原创作者:谷哥的小弟
  • 作者博客地址:http://blog.csdn.net/lfdfhl

问题描述

在使用@ConfigurationProperties注解和@EnableConfigurationProperties注解时,IDEA报错:SpringBoot Configuration Annotation Processor not configured;图示如下:

解决SpringBoot Configuration Annotation Processor not configured_第1张图片

解决方案

请在pom.xml导入spring-boot-configuration-processor依赖,代码如下:

<dependency>
    <groupId>org.springframework.bootgroupId>
    <artifactId>spring-boot-configuration-processorartifactId>
    <optional>trueoptional>
dependency>

你可能感兴趣的:(Spring,spring,boot,注解)