springboot configuration annotation processor not found in classpath 我在输入ConfigurationProperties(prefix = "girl")后,出现springboot configuration annotation processor not found in classpath的提示,大约在视频11:20秒处,有没有人知道是什么原因???此外,如果跳过这个提示,直接敲完代码运行,网页是能显示结果的!! 在pom.xml里加 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency>
在pom.xml里加
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<optional>true</optional>
</dependency>