java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > Java Reflect用反射获取属性上的注解

Java Reflect如何利用反射获取属性上的注解

作者:我一直在流浪

AnnotatedElement接口是Java反射机制的一部分,用于读取运行中程序的注释信息,通过getAnnotation、getAnnotations、isAnnotationPresent和getDeclaredAnnotations方法,可以访问和判断注解,Field类实现了该接口

1. AnnotatedElement接口

AnnotatedElement接口表示目前正在此 JVM 中运行的程序的一个已注释元素,该接口允许反射性地读取注释。

调用AnnotatedElement对象的如下方法可以访问Annotation信息:

2. Field类实现了AnnotatedElement接口

3. 获取属性上的注解

① 自定义注解

@Retention(value = RetentionPolicy.RUNTIME)
@Target(value = {ElementType.METHOD,ElementType.TYPE,ElementType.FIELD,ElementType.PARAMETER} )
public @interface MyParam1 {

    String value() default "";
}
@Retention(value = RetentionPolicy.RUNTIME)
@Target(value = {ElementType.METHOD,ElementType.TYPE,ElementType.FIELD,ElementType.PARAMETER} )
public @interface MyParam2 {

    String value() default "";
}

② 给方法参数上添加注解

@ControllerAdvice
@Controller
@MyAnnotation(name = "李四",age=12)
public class Test {

    @MyField1("name1")
    @MyField2("name2")
    @Value("name")
    private String name;

    @MyField1("email1")
    @MyField2("email2")
    @Value("email")
    private String email;

}

③ 获取属性上的注解

public class Main {
    public static void main(String[] args) throws NoSuchMethodException, ClassNotFoundException {
        // 得到Class类对象
        Class<?> clazz = Class.forName("com.example.redislock.annotation.Test");

        // 获取类的所有属性
        Field[] fields = clazz.getDeclaredFields();

        // 获取属性上的所有注解
        int i = 1;
        for (Field field : fields) {
            System.out.println("第"+i+++"个属性的注解有:");
            Annotation[] annotations = field.getAnnotations();
            for (Annotation annotation : annotations) {
                System.out.println(annotation.annotationType());
            }
        }

        // 获取属性上指定MyField2类型的注解
        System.out.println();
        System.out.println("获取属性上指定MyField2类型的注解:");
        for (Field field : fields) {
            MyField2 myField2 = field.getAnnotation(MyField2.class);
            System.out.println(myField2);
            System.out.println(myField2.value());
        }

        // 获取属性上指定MyField2类型的注解
        System.out.println();
        System.out.println("获取属性上指定MyField2类型的注解:");
        for (Field field : fields) {
            MyField2[] myField2s = field.getAnnotationsByType(MyField2.class);
            for (MyField2 myField2 : myField2s) {
                System.out.println(myField2);
            }
        }
    }
}

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文