Findbugs eclipse 排除个别校验

时间:2021-10-05 05:22:35

Findbugs检查出来的问题可以在message.xml(解压findbugs插件中findbugs-plugin.jar)中找到,通过具体的报错信息拿到对应的type类型,通过具体类型写排除该类型的xml后导入eclipse再重新通过findbus检查代码(FindBugs是针对.class文件的)。

具体如下步骤:

1:拿到findbugs插件中message.xml

Findbugs eclipse 排除个别校验

 

 

2:进入解压的目录拿到message.xml

 

 

 

Findbugs eclipse 排除个别校验

 

 3:在findbugs检查结果中拿到对应的信息(比如Possible double check of field)

Findbugs eclipse 排除个别校验

 

4:在message.xml中找到对应type

Findbugs eclipse 排除个别校验

 

 5:创建一个xml文件(名称随便)根节点为FindBugsFilter 子节点为Match,Match里面写规则具体规则和实现原理可以参考Findbugs官网具体章节http://findbugs.sourceforge.net/manual/filter.html

Findbugs eclipse 排除个别校验

 

 

 6:排除文件写好后可以导入eclipse里面再重新检查就可以了(Window->Preferences->Java->FindBugs->点击页签Filter files->点击Exclude filter files下点击Add导入刚才写的xml文件)

Findbugs eclipse 排除个别校验