java注解使用

java注解使用

在日常的开发过程中,我确实也很少自定义注解,它的实现主要基于反射,一般框架中会为我们提供一些注解。

自定义注解:

public class MetaAnnotation {


    @JyzTargetField
    private String info;

    @JyzTargetConstructor
    public MetaAnnotation(@JyzTargetParamter String info) {
        this.info = info;
    }

    @JyzTargetMethod
    public void test() {
        @JyzTargetLocalVariable
        String infoInner = "sa";
    }

    //接口、类、枚举、注解
    @Target(ElementType.TYPE)
    @interface JyzTargetType {
    }

    //字段、枚举的常量
    @Target(ElementType.FIELD)
    @interface JyzTargetField {
    }

    //方法
    @Target(ElementType.METHOD)
    @interface JyzTargetMethod {
    }

    //方法参数
    @Target(ElementType.PARAMETER)
    @interface JyzTargetParamter {
    }

    //构造函数
    @Target(ElementType.CONSTRUCTOR)
    @interface JyzTargetConstructor {
    }

    //局部变量
    @Target(ElementType.LOCAL_VARIABLE)
    @interface JyzTargetLocalVariable {
    }

    //注解
    @Target(ElementType.ANNOTATION_TYPE)
    @interface JyzTargetAnnotationType {
    }

    //包
    @Target(ElementType.PACKAGE)
    @Retention(RetentionPolicy.RUNTIME)
    @interface JyzTargetPackage {
        public String version() default "";
    }

    @JyzTargetAnnotationType
    @interface JyzTargetAll {
    }

    @Retention(RetentionPolicy.SOURCE)
    @interface JyzRetentionSource {
    }

    @Retention(RetentionPolicy.CLASS)
    @interface JyzRetentionClass {
    }

    @Retention(RetentionPolicy.RUNTIME)
    @interface JyzRetentionRuntime {
    }

    @Documented
    @interface JyzDocument {
    }

    @Inherited
    @interface JyzInherited {
    }

}

我们这里面自定义了很多的注解,例如: JyzTargetFieldJyzTargetConstructorJyzTargetMethod这些,定义注解的时候和定义接口类似,只是在interface前面多了一个@符号。

定义的注解不能够有方法,只能够有一些属性。

我们定义注解的时候,还可以用一些原有的注解进行修饰,可以指明我们的新定义的注解的使用场景,还有就是原生的四种注解是不能够直接使用的~

以上都只是注解的定义,并没有说我们怎么来解析这些注解,下面我们来重点讲一下,怎么来解析这些注解:

自定义注解的解析

@Documented
@Target(ElementType.METHOD)
@Inherited
@Retention(RetentionPolicy.RUNTIME)
public @interface MethodInfo {
    String author() default "Pankaj";

    String date();

    int revision() default 1;

    String comments();

}

自定义注解的使用与解析:

public class Main {

    @Override
    @MethodInfo(author = "Pankaj", comments = "Main method", date = "Nov 17 2012", revision = 1)
    public String toString() {
        return super.toString();
    }

    @Deprecated
    @MethodInfo(comments = "deprecated method", date = "Nov 17 2012")
    public static void oldMethod() {
        System.out.println("old method, don't use it.");
    }

    @SuppressWarnings({ "unchecked", "deprecation" })
    @MethodInfo(author = "Pankaj", comments = "Main method", date = "Nov 17 2012", revision = 10)
    public static void genericsTest() throws FileNotFoundException {
        List l = new ArrayList();
        l.add("abc");
        oldMethod();
    }


    public static void main(String[] args){
        System.out.println("===================");
        try{
            for (Method method : Main.class.getClassLoader().loadClass("comment.Main").getMethods()) {
                if(method.isAnnotationPresent(MethodInfo.class)){
                    try{
                        for (Annotation annotation : method.getAnnotations()) {
                            System.out.println("Annotation in Method '"
                                    + method + "' : " + annotation);
                        }
                        MethodInfo methodAnno  = method.getAnnotation(MethodInfo.class);
                        if(methodAnno.revision() == 1){
                            System.out.println("Method with revision no 1 = " + method);
                        }
                    }catch (Exception e){
                        e.printStackTrace();
                    }
                }
            }
        }catch (Exception e){
            e.printStackTrace();
        }
    }
}
控制台输出:
===================
Annotation in Method 'public java.lang.String comment.Main.toString()' : @comment.MethodInfo(author=Pankaj, revision=1, comments=Main method, date=Nov 17 2012)
Method with revision no 1 = public java.lang.String comment.Main.toString()
Annotation in Method 'public static void comment.Main.oldMethod()' : @java.lang.Deprecated()
Annotation in Method 'public static void comment.Main.oldMethod()' : @comment.MethodInfo(author=Pankaj, revision=1, comments=deprecated method, date=Nov 17 2012)
Method with revision no 1 = public static void comment.Main.oldMethod()
Annotation in Method 'public static void comment.Main.genericsTest() throws java.io.FileNotFoundException' : @comment.MethodInfo(author=Pankaj, revision=10, comments=Main method, date=Nov 17 2012)

以上的代码我们就是定义了几个方法,用上了我们自己定义的注解,然后在Main方法中。利用反射,将我们定义的注解解析出来。将里面的值打印出来,当然在实际的操作中,我们应该执行自己的逻辑,而不紧紧是把他们打印出来。

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,928评论 25 707
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,794评论 6 342
  • 我放飞一只和平鸽 飞越沙漠 飞越大海 来到战乱地带 那里的人们先是表达感谢 便将鸽子关进了笼子 准备晚餐的肉食 鸽...
    文笔阁下阅读 174评论 0 0
  • 感恩冥想: 1.感恩婆妈早上为我们准备可口的早餐,感恩她帮我们带孩子,让我有精力时间出外工作,做自己想做的事情。 ...
    秀芝_11c0阅读 158评论 0 1
  • 那一天 你的出现点燃我的生命 那一天 你的回眸让我看到了什么丽质 那一天 我就住定陪你走永远
    麻天喜阅读 155评论 1 2