Spring Boot Configuration Annotation Processor not configured 错误解决办法

springBoot增加@ConfigurationProperties之前:
Spring Boot Configuration Annotation Processor not configured 错误解决办法_第1张图片
springBoot增加@ConfigurationProperties之后:
Spring Boot Configuration Annotation Processor not configured 错误解决办法_第2张图片
报错信息:Spring Boot Configuration Annotation Processor not configured
fccbe84e52b192ff8fe5524a6d95e36.png

解决方法:

在pom.xml中添加依赖:

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

Spring Boot Configuration Annotation Processor not configured 错误解决办法_第3张图片
添加依赖之后不显示:Spring Boot Configuration Annotation Processor not configured
Spring Boot Configuration Annotation Processor not configured 错误解决办法_第4张图片

为什么可以这样解决?

添加了 spring-boot-configuration-processor 依赖后不再报错 “Spring Boot Configuration Annotation Processor not configured” 是因为该依赖是 Spring Boot 的一个注解处理器,它的存在帮助 Spring Boot 正确处理 @ConfigurationProperties 注解,并生成与之相关的配置元数据,使得配置属性能够正确地与配置文件绑定。
具体来说,spring-boot-configuration-processor 主要完成以下工作:

  1. 注解处理:它允许 Spring Boot 扫描和处理 @ConfigurationProperties 注解,以便将属性绑定到配置文件中。
  2. 配置元数据生成:该处理器会生成元数据,描述了如何将属性映射到配置文件中的属性名,以及属性的类型和默认值等信息。
  3. 验证和提示:它还可以进行一些验证和提示,以确保配置属性的正确性。

当你在项目中添加了这个依赖后,Spring Boot 就能够正确地识别和处理 @ConfigurationProperties 注解,以及与之关联的配置类,从而避免了 “Spring Boot Configuration Annotation Processor not configured” 错误。
需要注意的是,true 部分表明这个依赖是可选的,这意味着它不会强制引入任何其他依赖,因此不会对项目的运行时产生影响。但是,在开发和构建阶段,它对于配置属性的处理非常重要。如果没有这个依赖,Spring Boot 将无法正常处理 @ConfigurationProperties 注解,从而可能导致配置属性无法正确绑定到配置文件中的值。

你可能感兴趣的:(JAVA,spring,boot,java,mybatis)