当前位置: 代码迷 >> 综合 >> IDEA出现Spring Boot configuration annotation processor not found in classpath错误
  详细解决方案

IDEA出现Spring Boot configuration annotation processor not found in classpath错误

热度:13   发布时间:2024-01-28 13:23:17.0

这个错误只需要在pom.xml文件中添加spring-boot-configuration-processor的依赖即可。

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

 

  相关解决方案