74

我创建我的注释

public @interface MyAnnotation {
}

我把它放在我的测试对象的字段上

public class TestObject {

    @MyAnnotation 
    final private Outlook outlook;
    @MyAnnotation 
    final private Temperature temperature;
     ...
}

现在我想获取所有字段的列表MyAnnotation

for(Field field  : TestObject.class.getDeclaredFields())
{
    if (field.isAnnotationPresent(MyAnnotation.class))
        {
              //do action
        }
}

但似乎我的块执行操作从未执行,并且字段没有注释,因为以下代码返回 0。

TestObject.class.getDeclaredField("outlook").getAnnotations().length;

有谁可以帮助我并告诉我我做错了什么?

4

2 回答 2

81

您需要将注释标记为在运行时可用。将以下内容添加到您的注释代码中。

@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
}
于 2013-05-16T10:52:30.960 回答
17
/**
 * @return null safe set
 */
public static Set<Field> findFields(Class<?> classs, Class<? extends Annotation> ann) {
    Set<Field> set = new HashSet<>();
    Class<?> c = classs;
    while (c != null) {
        for (Field field : c.getDeclaredFields()) {
            if (field.isAnnotationPresent(ann)) {
                set.add(field);
            }
        }
        c = c.getSuperclass();
    }
    return set;
}
于 2015-04-21T07:54:02.120 回答