0
点赞
收藏
分享

微信扫一扫

Spring Boot Configuration An notation Processor not configured


官方说明地址
​​​ https://docs.spring.io/spring-boot/docs/2.1.5.RELEASE/reference/html/configuration-metadata.html#configuration-metadata-annotation-processor​​

解决方法
在pom.xml中添加

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-configuration-processor</artifactId>
<!--不传递依赖-->
<optional>true</optional>
</dependency>


举报

相关推荐

0 条评论