Eclipse龙目岛错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse龙目岛错误相关的知识,希望对你有一定的参考价值。

我收到此错误消息:

enter image description here

消息是:

edu无法解析为类型

我已将lombok.jar添加到eclipse文件夹中,并且已检测到:

enter image description here

有什么想法吗?

答案

最有可能您的lombok.config包含以下行:

lombok.extern.findbugs.addSuppressFBWarnings=true

SuppressFBWarnings批注位于edu。umd.cs.findbugs.annotations中,这就是您收到该错误的原因。

确保findbugs如documentation中所述在类路径上:

Lombok可以添加@SuppressFBWarnings批注,如果您要在类文件上运行FindBugs。要启用此功能,确保在编译时findbugs在类路径中,

似乎您正在使用gradle,因此添加以下内容应该可以:

compile group: 'com.google.code.findbugs', name: 'annotations', version: '3.0.1'

https://mvnrepository.com/artifact/com.google.code.findbugs/annotations/3.0.1#gradle

以上是关于Eclipse龙目岛错误的主要内容,如果未能解决你的问题,请参考以下文章

龙目岛建设者的继承

导出eclipse可部署插件和片段时出错

龙目岛不生成getter和setter?

Quarkus 和 Jackson 奇怪的龙目岛行为

Eclipse 中的通用代码片段或模板

xml Eclipse模板(代码片段)检查参数并最终抛出IllegalArgumentException