2

我遇到了Reflections的问题。我正在尝试Set使用方法获取一个字段,Reflections#getFieldsAnnotatedWith但是当我运行单元测试时,它什么也不返回,有人能告诉我为什么吗?(我正在使用 IntelliJ IDE

这是我正在使用的课程,它非常基础。

//The test class run with junit

public class ReflectionTestingTest {

    @Test
    public void test() {
        Reflections ref = new Reflections(AnnotatedClass.class);
        assertEquals(2, ref.getFieldsAnnotatedWith(TestAnnotation.class).size());
        Set<Field> fields = ref.getFieldsAnnotatedWith(TestAnnotation.class);
    }
}

//The class with the annotated fields I want to have in my Set.

public class AnnotatedClass {

    @TestAnnotation
    public int annotatedField1 = 123;

    @TestAnnotation
    public String annotatedField2 = "roar";
}

//And the @interface itself

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface TestAnnotation {}

测试失败并显示以下消息:

junit.framework.AssertionFailedError: 
Expected :2
Actual   :0
4

1 回答 1

5

AnnotatedClass应该有用 注释的字段@TestAnnotation。然后您的代码将返回2

public class AnnotatedClass {

    @TestAnnotation
    public int annotatedField1 = 123;

    @TestAnnotation
    public String annotatedField2 = "roar";

}

现在,要查询字段和方法,您需要在创建Reflections对象时指定扫描仪。此外, 的用法Reflections应该是:

Reflections ref = new Reflections("<specify package name here>", new FieldAnnotationsScanner());
于 2014-01-23T12:50:48.950 回答