Lombok Requires Annotation Processing: Do you want to enable annotation processors?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lombok Requires Annotation Processing: Do you want to enable annotation processors?相关的知识,希望对你有一定的参考价值。
参考技术A 问题发生背景:Event Log中看到这个报错。
解决方法1:
在弹出的【Event Log】窗口中点击【Enable】即可。
解决方法2:
依次点击【File】——>【Setting】——>【Build,Execution,Deployment】——>【Compiler】——>【Annotation Processors 】,右侧勾选【Enable Annotation Processing】 即可,如下图:
解决方法3:
已安装列表中提示 lombok 插件需要更新,点击 update 插件,重启 idea,就好了。
idea中lombok log找不到符号
参考技术A 项目中使用了lombok,但是在idea使用Gradle编译过程是出现找不到符号。经查找及尝试,最终解决方案为,在build.gradle中添加:
annotationProcessor("org.projectlombok:lombok:1.16.16")
以上是关于Lombok Requires Annotation Processing: Do you want to enable annotation processors?的主要内容,如果未能解决你的问题,请参考以下文章
Java 9 中的 requires 和 requires 传递语句有啥区别?
Java9中的Exports、Indirect Exports、Requires和Indirect Requires之间的区别?