请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

gradle编译Lombok报错No processor claimed any of these annotations

在spring mvc demo中的build.gradle配置文件中:

    compileOnly 'org.projectlombok:lombok:1.18.16'
    annotationProcessor 'org.projectlombok:lombok:1.18.16'

    testCompileOnly 'org.projectlombok:lombok:1.18.16'
    testAnnotationProcessor 'org.projectlombok:lombok:1.18.16'

但是在启动tomcat时报错:

警告: 没有处理程序要使用以下任何注释: org.springframework.context.annotation.Configuration,org.springframework.web.bind.annotation.RequestParam,org.springframework.stereotype.Service,org.springframework.web.bind.annotation.RequestMapping,org.springframework.beans.factory.annotation.Autowired,org.springframework.web.servlet.config.annotation.EnableWebMvc,org.springframework.context.annotation.Bean,org.springframework.stereotype.Controller,javax.annotation.processing.SupportedAnnotationTypes,org.springframework.context.annotation.ComponentScan
错误: 发现警告, 但指定了 -Werror

最终编译失败,网上的解决方案是用-Xlint:-processing沉默警告,但是并没有起作用

正在回答 回答被采纳积分+3

1回答

翔仔 2020-10-28 02:19:19

同学好,请问源码是不是用的github的,需要用github上面的官方源码才可以,此外,光看这些信息我这边没法精确定位问题呢,查了一下,最贴切的如下

This doesn't really have anything to do with Lombok specifically. It will happen with any annotation processor on the classpath. The warning is indicating that annotation processing was performed during compilation and that none of the annotation processors handled an annotation. Note that there's nothing special about @SpringBootApplication and that it'll warn about any unhandled annotation
IMO, it's not a very helpful warning as it assumes that every annotation in a project's code will be handled by an annotation processor. Given that anyone can write an annotation and that there are many other uses for annotations other than processing during compilation, that assumption seems flawed to me.
I think you have two choices:
Ignore the warning
Write your own annotation processor that does nothing other than using @SupportedAnnotationTypes to declare all of the annotations that you want to use in your code that you don't want to be warned about.

看起来说的是有些annotation没被处理,感觉是缺少某些关联的jar导致的,复制下课程的build.gradle试试

0 回复 有任何疑惑可以回复我~
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信