Spring Boot Configuration Annotation Processor not configured解决方法
遇到的问题:Spring Boot Configuration Annotation Processor not configured
解决方法:其实这个并不影响代码的编译,但是如果你想去掉它,可以在pom.xml中加入spring-boot-configuration-processor依赖即可!
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
</dependency>

浙公网安备 33010602011771号