我想禁止针对特定字段或局部变量的 FindBugs 警告。FindBugs 文档中的Target
, Type
, Field
, Method
, Parameter
,Constructor
为其Package
注解edu.umd.cs.findbugs.annotations.SuppressWarning
[1]。但是注释字段对我不起作用,只有当我注释方法时,警告才会被抑制。
注释整个方法对我来说似乎很广泛。有没有办法抑制特定字段的警告?还有另一个相关的问题[2],但没有答案。
[1] http://findbugs.sourceforge.net/manual/annotations.html
演示代码:
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
}
}