欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring boot configuration annotation processor not found in classpath

程序员文章站 2022-03-24 12:37:06
...

Spring boot提示信息:“spring boot configuration annotation processor not found in classpath”

解决办法:

在build.gradle中粘贴如下:

dependencies {
    compile("org.springframework.boot:spring-boot-configuration-processor")
}
compileJava.dependsOn(processResources)

 

相关标签: Spring Boot