摘要:使用反射可以在运行时访问类附加的注解。什么是注解注解是的新特性。注解是可以添加到代码中的一种注释或者说是元数据。的定义代码在前标记一个注解。意味着注解只能在类型典型的类接口上使用。注解的详细使用教程可以参考。
使用反射可以在运行时访问Java类附加的注解。
什么是Java注解注解是Java5的新特性。注解是可以添加到Java代码中的一种注释或者说是元数据。注解可以使用预编译工具在编译时处理,或者通过反射在运行时处理。下面是类注解的示例:
@MyAnnotation(name="someName", value = "Hello World") public class TheClass { }
类TheClass最上方有注解@MyAnnotation。注解的定义和接口类似。MyAnnotation的定义代码:
@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) public @interface MyAnnotation { public String name(); public String value(); }
@ 在interface前标记一个注解。一旦你定义一个注解,就可以在代码中使用,就像例子中一样。
在这个注解有2个指令,@Retention(RetentionPolicy.RUNTIME)和@Retention(RetentionPolicy.RUNTIME),指定定义的注解该如何使用。
@Retention(RetentionPolicy.RUNTIME) 意思是注解可以在运行时通过反射访问。如果你没有设置这个指令,注解将不能在运行时保存,因此也不能通过反射访问。
@Target(ElementType.TYPE)意味着注解只能在类型(典型的类、接口)上使用。你同样可以指定METHOD、Field,或者你可以允许所有目标包括类型、方法、属性等。
注解的详细使用教程可以参考Java Annotations tutorial。
你可以在运行时访问一个类、方法、属性的注解。访问类的示例代码如下:
Class aClass = TheClass.class; Annotation[] annotations = aClass.getAnnotations(); for(Annotation annotation : annotations){ if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("name: " + myAnnotation.name()); System.out.println("value: " + myAnnotation.value()); } }
你也可以像这样访问类的特定注解:
Class aClass = TheClass.class; Annotation annotation = aClass.getAnnotation(MyAnnotation.class); if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("name: " + myAnnotation.name()); System.out.println("value: " + myAnnotation.value()); }方法注解
方法上的注解示例:
public class TheClass { @MyAnnotation(name="someName", value = "Hello World") public void doSomething(){} }
访问方法注解代码:
Method method = ... //obtain method object Annotation[] annotations = method.getDeclaredAnnotations(); for(Annotation annotation : annotations){ if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("name: " + myAnnotation.name()); System.out.println("value: " + myAnnotation.value()); } }
访问方法的特定注解代码:
Method method = ... // obtain method object Annotation annotation = method.getAnnotation(MyAnnotation.class); if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("name: " + myAnnotation.name()); System.out.println("value: " + myAnnotation.value()); }参数注解
我们也可以把注解添加在方法的参数声明上。示例如下:
public class TheClass { public static void doSomethingElse( @MyAnnotation(name="aName", value="aValue") String parameter){ } }
你可以通过Method对象访问参数注解,代码如下:
Method method = ... //obtain method object Annotation[][] parameterAnnotations = method.getParameterAnnotations(); Class[] parameterTypes = method.getParameterTypes(); int i=0; for(Annotation[] annotations : parameterAnnotations){ Class parameterType = parameterTypes[i++]; for(Annotation annotation : annotations){ if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("param: " + parameterType.getName()); System.out.println("name : " + myAnnotation.name()); System.out.println("value: " + myAnnotation.value()); } } }
注意:Method.getParameterAnnotations() 方法返回二维Annotation数组,包含每个参数上的注解数组。
属性注解下面是属性上添加注解的示例:
public class TheClass { @MyAnnotation(name="someName", value = "Hello World") public String myField = null; }
访问属性上所有注解的代码:
Field field = ... //obtain field object Annotation[] annotations = field.getDeclaredAnnotations(); for(Annotation annotation : annotations){ if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("name: " + myAnnotation.name()); System.out.println("value: " + myAnnotation.value()); } }
访问属性上的特定注解:
Field field = ... // obtain method object Annotation annotation = field.getAnnotation(MyAnnotation.class); if(annotation instanceof MyAnnotation){ MyAnnotation myAnnotation = (MyAnnotation) annotation; System.out.println("name: " + myAnnotation.name()); System.out.println("value: " + myAnnotation.value()); }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/77362.html
摘要:第章元编程与注解反射反射是在运行时获取类的函数方法属性父类接口注解元数据泛型信息等类的内部信息的机制。本章介绍中的注解与反射编程的相关内容。元编程本质上是一种对源代码本身进行高层次抽象的编码技术。反射是促进元编程的一种很有价值的语言特性。 第12章 元编程与注解、反射 反射(Reflection)是在运行时获取类的函数(方法)、属性、父类、接口、注解元数据、泛型信息等类的内部信息的机...
摘要:今天对此尝试了一番,发现通过反射来动态修改注解的属性值是可以做到的众所周知,这个包下面都是的反射类和工具。一个注解通过指定其生命周期,本文所讨论的动态修改注解属性值,建立在这种情况。 昨晚看到一条问题,大意是楼主希望可以动态得建立多个Spring 的定时任务。 这个题目我并不是很熟悉,不过根据题目描述和查阅相关 Spring 创建定时任务 的资料,发现这也许涉及到通过Java代码动态修...
摘要:注解提供了一种安全的类似注释的机制,用来将任何的信息或元数据与程序元素类方法成员变量等进行关联。为程序的元素类方法成员变量加上更直观更明了的说明,这些说明与程序的业务逻辑无关,并且提供给指定的工具或框架使用。 什么是注解? Annotation 是 Java5 之后开始引入的新特性,中文为注解。注解提供了一种安全的类似注释的机制,用来将任何的信息或元数据(metadata)与程序元素(...
摘要:扩展了反射机制的,以帮助程序员快速的构造自定义注解处理器。返回该程序元素上存在的所有注解。在中,可以使用注解将一个继承于的类标注为可以处理用户请求的。 大家好,我是乐字节的小乐,上次给大家带来了Java注解-元数据、注解分类、内置注解和自定义注解|乐字节,这次接着往下讲注解处理器和servlet3.0showImg(https://segmentfault.com/img/bVbvBP...
阅读 1059·2021-11-16 11:45
阅读 2668·2021-09-27 13:59
阅读 1291·2021-08-31 09:38
阅读 3116·2019-08-30 15:52
阅读 1294·2019-08-29 13:46
阅读 2049·2019-08-29 11:23
阅读 1606·2019-08-26 13:47
阅读 2456·2019-08-26 11:54