如何为具有特定注释的字段设置FindBugs过滤器?

时间:2014-05-22 10:55:21

标签: java eclipse findbugs

我有FindBugs报告的错误,但我知道更好:)请参阅以下示例:

public class MyClass extends BaseClass {

    @CustomInjection
    private Object someField;

    public MyClass() {
        super();
        someField.someMethod(); // Bug is here because FindsBugs thinks this is always null
    }
}

在我的BaseClass构造函数中,我使用正确的对象注入带有@CustomInjection批注的所有字段,因此在我的情况下,我的带注释的字段不为空。

我不想通过“抑制警告”来抑制警告'因为这会使代码混乱很多。我更喜欢制作像findbugs解释here这样的过滤器,但我无法弄清楚如何过滤使用某个界面注释的字段的错误。我也不想过滤所有空错误警告。我认为它应该是这样的:

<Match>
  <Bug code="UR">  
  <Field annotation="CustomInjection">
</Match>

2 个答案:

答案 0 :(得分:5)

我找到了解决此问题的解决方法。似乎在FindBugs中对基于注释的注入的检测进行了硬编码,请参阅以下源代码:

public static boolean isInjectionAttribute(@DottedClassName String annotationClass) {
    if (annotationClass.startsWith("javax.annotation.")
            || annotationClass.startsWith("javax.ejb")
            || annotationClass.equals("org.apache.tapestry5.annotations.Persist")
            || annotationClass.equals("org.jboss.seam.annotations.In")
            || annotationClass.startsWith("javax.persistence")
            || annotationClass.endsWith("SpringBean")
            || annotationClass.equals("com.google.inject.Inject")
            || annotationClass.startsWith("com.google.") && annotationClass.endsWith(".Bind")
            && annotationClass.hashCode() == -243168318
            || annotationClass.startsWith("org.nuxeo.common.xmap.annotation")
            || annotationClass.startsWith("com.google.gwt.uibinder.client")
            || annotationClass.startsWith("org.springframework.beans.factory.annotation")
            || annotationClass.equals("javax.ws.rs.core.Context")) {
        return true;
    }
    int lastDot = annotationClass.lastIndexOf('.');
    String lastPart = annotationClass.substring(lastDot + 1);
    if (lastPart.startsWith("Inject")) {
        return true;
    }
    return false;
}

因此@EJB之类的注释不会显示为UR错误,但我的注释@CustomInjection将始终是UR错误。

但是在函数的最后,对于以“Inject”开头的所有注释名称都有一个转义符,所以如果我将@CustomInjection重命名为@InjectCustom,UR错误就会消失。因此,要避免此问题,只需将注释重命名为@InjectSomething

答案 1 :(得分:1)

如果您不能直接执行此操作,请编写一个检测注释的预处理器,并生成初始化字段的代码,使其使用看起来对FindBugs有效。将预处理器输出提供给FindBugs,而不是原始源代码。