Spring 工具套件中的项目报告“无法加载注释处理器工厂”

2022-09-02 12:30:41

我在Spring Tool Suite报告中的项目无法“为项目XXX加载注释处理器工厂'org.springframework.boot.configurationprocessor.ConfigurationMetadataAnnotationProcessor'”,我的项目运行正常,但我不想看到此错误。我做了很多搜索,但我找不到任何结果。多谢。

enter image description here


答案 1

从项目根目录中删除该文件。.factory


答案 2

您需要将弹簧引导配置处理器添加到您的项目中;使用 maven 时,请添加此依赖项:

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

您可以在 Spring Boot 文档中找到更多信息。


推荐