Eclipse龙目岛错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Eclipse龙目岛错误相关的知识,希望对你有一定的参考价值。
答案
最有可能您的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龙目岛错误的主要内容,如果未能解决你的问题,请参考以下文章