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>

 

 
 
 
 
 
posted @ 2022-09-13 22:45  一直学习的程序小白  阅读(119)  评论(0编辑  收藏  举报