快速业务通道

Java Annotation入门 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-17
/加载在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高级应用》中谈 到。

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号