问题截图:

解决Spring Boot Configuration Annotation Processor not found in classpath

解决方式:

在pom.xml文件中添加这些依赖

1 <dependency>
2     <groupId>org.springframework.boot</groupId>
3     <artifactId>spring-boot-configuration-processor</artifactId>
4     <optional>true</optional>
5 </dependency>

相关文章:

  • 2021-09-24
  • 2022-12-23
  • 2022-02-04
  • 2022-12-23
  • 2021-12-22
  • 2022-01-13
  • 2021-10-17
猜你喜欢
  • 2021-06-27
  • 2021-07-06
  • 2021-11-10
  • 2021-06-03
相关资源
相似解决方案