Java Annotation入门知识
/** * Describes the Request-For-Enhancement(RFE) that led * to the presence of the annotated API element. */ public @interface RequestForEnhancement { intid(); String synopsis(); String engineer() default "[unassigned]"; String date();default "[unimplemented]"; }代码中只定义了一个annotation类型RequestForEnhancement。 2。修饰方法的annotation声明方式: annotation 是一种修饰符,能够如其它修饰符(如public、static、final)一般使用。习惯用法是annotaions用在其它的修饰符前面。 annotations由“@+annotation类型+带有括号的成员-值列表”组成。这些成员的值必须是编译时常量(即在运行时不变)。 A:下面是一个使用了RequestForEnhancement annotation的方法声明: 清单2:
@RequestForEnhancement( id = 2868724, synopsis = "Enable time-travel", engineer = "Mr. Peabody", date = "4/1/3007" ) public static void travelThroughTime(Date destination) { ... }B:当声明一个没有成员的annotation类型声明时,可使用以下方式: 清单3:
/** * Indicates that the specification of the annotated API element * is preliminary and subject to change. */ public @interface Preliminary { }作为上面没有成员的annotation类型声明的简写方式: 清单4:
@Preliminary public class TimeTravel { ... }C:如果在annotations中只有唯一一个成员,则该成员应命名为value: 清单5:
/** * Associates a copyright notice with the annotated API element. */ public @interface Copyright { String value(); }更为方便的是对于具有唯一成员且成员名为value的annotation(如上文),在其使用时可以忽略掉成员名和赋值号(=): 清单6:
@Copyright("2002 Yoyodyne Propulsion Systems") public class OscillationOverthruster { ... }3。一个使用实例: 结合上面所讲的,我们在这里建立一个简单的基于annotation测试框架。首先我们需要一个annotation类型来表示某个方法是一个应该被测试工具运行的测试方法。 清单7:
import java.lang.annotation.*; /** * Indicates that the annotated method is a test method. * This annotation should be used only on parameterless static methods. */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface Test { }值得注意的是annotaion类型声明是可以标注自己的,这样的annotation被称为“meta-annotations”。 在上面的代码中,@Retention(RetentionPolicy.RUNTIME)这个meta-annotation表示了此类型的 annotation将被虚拟机保留使其能够在运行时通过反射被读龋而@Target(ElementType.METHOD)表示此类型的 annotation只能用于修饰方法声明。 下面是一个简单的程序,其中部分方法被上面的annotation所标注: 清单8:
public class Foo { @Test public static void m1() { } public static void m2() { } @Test public static void m3() { throw new RuntimeException("Boom"); } public static void m4() { } @Test public static void m5() { } public static void m6() { } @Test public static void m7() { throw new RuntimeException("Crash"); } public static void m8() { } } Here is the testing tool: import java.lang.reflect.*; public class RunTests { public static void main(String[] args) throws Exception { int passed = 0, failed = 0; for (Method m : Class.forName(args[0]).getMethods()) { if (m.isAnnotationPresent(Test.class)) { try { m.invoke(null); passed++; } catch (Throwable ex) { System.out.printf("Test %s failed: %s %n", m, ex.getCause()); failed++; } } } System.out.printf("Passed: %d, Failed %d%n", passed, failed); } }这个程序从命令行参数中取出类名,并且遍历此类的所有方法,尝试调用其中被上面的测试annotation类型标注过的方法。在此过程中为了找出哪些方法被 annotation类型标注过,需要使用反射的方式执行此查询。如果在调用方法时抛出异常,此方法被认为已经失败,并打印一个失败报告。最后,打印运行通过/失败的方法数量。 下面文字表示了如何运行这个基于annotation的测试工具: 清单9:
$ java RunTests Foo Test public static void Foo.m3() failed: java.lang.RuntimeException: Boom Test public static void Foo.m7() failed: java.lang.RuntimeException: Crash Passed: 2, Failed 2四、Annotation分类: 根据annotation的使用方法和用途主要分为以下几类: 1。内建Annotation——Java5.0版在java语法中经常用到的内建Annotation: @Deprecated用于修饰已经过时的方法; @Override用于修饰此方法覆盖了父类的方法(而非重载); @SuppressWarnings用于通知java编译器禁止特定的编译警告。 下面代码展示了内建Annotation类型的用法: 清单10:
package com.bjinfotech.practice.annotation; /** * 演示如何使用java5内建的annotation * 参考资料: * http://java.sun.com/docs/books/tutorial/java/javaOO/annotations.html * http://java.sun.com/j2se/1.5.0/docs/guide/language/annotations.html * http://mindprod.com/jgloss/annotations.html * @author cleverpig * */ import java.util.List; public class UsingBuiltInAnnotation { //食物类 class Food{} //干草类 class Hay extends Food{} //动物类 class Animal{ Food getFood(){ return null; } //使用Annotation声明Deprecated方法 @Deprecated void deprecatedMethod(){ } } //马类-继承动物类 class Horse extends Animal{ //使用Annotation声明覆盖方法 @Override Hay getFood(){ return new Hay(); } //使用Annotation声明禁止警告 @SuppressWarnings({"deprecation","unchecked"}) void callDeprecatedMethod(List horseGroup){ Animal an=new Animal(); an.deprecatedMethod(); horseGroup.add(an); } } }2。开发者自定义Annotation:由开发者自定义Annotation类型。 下面是一个使用annotation进行方法测试的sample: AnnotationDefineForTestFunction类型定义如下: 清单11:
package com.bjinfotech.practice.annotation; import java.lang.annotation.*; /** * 定义annotation * @author cleverpig * */ //加载在VM中,在运行时进行映射 @Retention(RetentionPolicy.RUNTIME) //限定此annotation只能标示方法 @Target(ElementType.METHOD) public @interface AnnotationDefineForTestFunction{}测试annotation的代码如下: 清单12:
package com.bjinfotech.practice.annotation; import java.lang.reflect.*; /** * 一个实例程序应用前面定义的Annotation:AnnotationDefineForTestFunction * @author cleverpig * */ public class UsingAnnotation { @AnnotationDefineForTestFunction public static void method01(){} public static void method02(){} @AnnotationDefineForTestFunction public static void method03(){ throw new RuntimeException("method03"); } public static void method04(){ throw new RuntimeException("method04"); } public static void main(String[] argv) throws Exception{ int passed = 0, failed = 0; //被检测的类名 String className="com.bjinfotech.practice.annotation.UsingAnnotation"; //逐个检查此类的方法,当其方法使用annotation声明时调用此方法 for (Method m : Class.forName(className).getMethods()) { if (m.isAnnotationPresent(AnnotationDefineForTestFunction.class)) { try { m.invoke(null); passed++; } catch (Throwable ex) { System.out.printf("测试 %s 失败: %s %n", m, ex.getCause()); failed++; } } } System.out.printf("测试结果: 通过: %d, 失败: %d%n", passed, failed); } }3。使用第三方开发的Annotation类型 这也是开发人员所常常用到的一种方式。比如我们在使用Hibernate3.0时就可以利用Annotation生成数据表映射配置文件,而不必使用Xdoclet。 五、总结: 1。前面的文字说明了annotation的使用方法、定义方式、分类。初学者可以通过以上的说明制作简单的annotation程序,但是对于一些高级的 annotation应用(例如使用自定义annotation生成javabean映射xml文件)还需要进一步的研究和探讨。 2。同时,annotation运行存在两种方式:运行时、编译时。上文中讨论的都是在运行时的annotation应用,但在编译时的annotation应用还没有涉及,因为编译时的annotation要使用annotation processing tool。 涉及以上2方面的深入内容,作者将在后文《Java Annotation高级应用》中谈到。 六、参考资源: ·Matrix-Java开发者社区:http://www.matrix.org.cn ·http://java.sun.com/docs/books/tutorial/java/javaOO/annotations.html ·http://java.sun.com/j2se/1.5.0/docs/guide/apt/GettingStarted.html ·http://java.sun.com/j2se/1.5.0/docs/guide/apt/GettingStarted.html ·http://java.sun.com/j2se/1.5.0/docs/guide/apt/GettingStarted.html