Spring Boot configuration annotation processor not found in classpath error occurs in IDEA

This error only needs to add the spring-boot-configuration-processor dependency in the pom.xml file.

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

 

Guess you like

Origin blog.csdn.net/c_learner_/article/details/107360842