我查看了Spotbug https://spotbugs.readthedocs.io/en/stable/
的文档但是关于误报的信息并不全面。
请帮助我完成将某些错误报告为误报的步骤,以使这些错误不再属于报告。
P.S。 -在我们的情况下,不能使用SuppressFBWarnings。
答案 0 :(得分:0)
谢谢Ole。 XML文件就是这样,必须在文件中添加文件名 pom文件中的Spotbugs Maven插件列表:
"<?xml version="1.0" encoding="UTF-8"?> <FindBugsFilter> <Match> <Class name="com.foobar.MyClass" /> <Method name="someMethod" /> <Bug pattern="DLS_DEAD_LOCAL_STORE" /> <Priority value="2" /> </Match> </FindBugsFilter>"