通过反射获取带有注释的字段列表



我创建了我的注释

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
        }
}

但是似乎我的block do动作从未执行过,并且fields没有注释,因为下面的代码返回0。

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

有没有人可以帮助我,告诉我我做错了什么?

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

@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
}
/**
 * @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;
}

相关内容

  • 没有找到相关文章

最新更新