如何禁止显示字段或局部变量的 FindBugs 警告?

2022-09-01 13:14:37

我想禁止特定字段或局部变量的FindBugs警告。FindBugs 记录了 其注释 [1] 的 、、 、 、但是,对我来说,注释字段不起作用,只有当我注释了警告被抑制的方法时。TargetTypeFieldMethodParameterConstructorPackageedu.umd.cs.findbugs.annotations.SuppressWarning

对我来说,注释整个方法似乎很宽泛。有没有办法抑制特定字段上的警告?还有另一个相关的问题[2],但没有答案。

[1] http://findbugs.sourceforge.net/manual/annotations.html

[2] 在 Eclipse 中禁止显示 FindBugs 警告

演示代码:

public class SyncOnBoxed
{
    static int counter = 0;
    // The following SuppressWarnings does NOT prevent the FindBugs warning
    @edu.umd.cs.findbugs.annotations.SuppressWarnings(value="DL_SYNCHRONIZATION_ON_BOXED_PRIMITIVE")
    final static Long expiringLock = new Long(System.currentTimeMillis() + 10);
    
    public static void main(String[] args) {
        while (increment(expiringLock)) {
            System.out.println(counter);
        }
    }
    
    // The following SuppressWarnings prevents the FindBugs warning
    @edu.umd.cs.findbugs.annotations.SuppressWarnings(value="DL_SYNCHRONIZATION_ON_BOXED_PRIMITIVE")
    protected static boolean increment(Long expiringLock)
    {
        synchronized (expiringLock) { // <<< FindBugs warning is here: Synchronization on Long in SyncOnBoxed.increment()
            counter++;
        }
        return expiringLock > System.currentTimeMillis(); // return false when lock is expired
    }
}

答案 1

@SuppressFBWarnings仅禁止显示为该字段声明报告的查找虫警告,而不是与该字段关联的每个警告。

例如,这会禁止显示“字段仅设置为 null”警告:

@SuppressFBWarnings("UWF_NULL_FIELD")
String s = null;

我认为你能做的最好的事情就是将带有警告的代码隔离到最小的方法中,然后在整个方法上禁止警告。

注意:被标记为已弃用,以支持@SuppressWarnings@SuppressFBWarnings


答案 2

检查 http://findbugs.sourceforge.net/manual/filter.html#d0e2318 有一个本地标记可以与方法标记一起使用。在这里,您可以指定应为特定局部变量排除哪个 bug。例:

<FindBugsFilter>
  <Match>
        <Class name="<fully-qualified-class-name>" />
        <Method name="<method-name>" />
        <Local name="<local-variable-name-in-above-method>" />
        <Bug pattern="DLS_DEAD_LOCAL_STORE" />
  </Match>
</FindBugsFilter>

推荐