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

解决spring boot configuration annotation processor not found in classpath

程序员文章站 2022-03-24 12:36:42
...

在pom.xml导入依赖

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

1、首先要添加这个配置,并等待依赖更新完成。
2、如果出现:Re-run spring boot configuration annotation processor to update generate metadata。
忽略即可。大不了你重新编辑下。再大不了你重启下IDEA。

Ref:
https://www.cnblogs.com/youqc/p/8728725.html