Spring注解原理探索(一)

之 Java元注解释义

Question
  • 注解在Java中如何起作用?
  • Spring是如何识别注解?
  • 如何自定义注解为我所用?
  • Spring注解:
    @Aotuwired @Required @Qualifier @Provider @Scope ...
  • Spring MVC 注解:
    @Controller @Service @Repository @Component @RequestMapping @RequetBody @ResponseBody ...
Extension
Solution

Java注解起源:JDK1.5
常见Java注解 :

  • @Override
  • @Deprecated
  • @SupressWarnings

1.从@Override说起,引出Java注解和元注解。
@Override 源码如下:

/*If a method is annotated with this annotation type 
 * compilers are required to generate an error message 
 * unless at least one of the following conditions hold:
 *
 * The method does override or implement a method declared in a
 * supertype.
 * The method has a signature that is override-equivalent to that of
 * any public method declared in {@linkplain Object}.
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.SOURCE)
public @interface Override {    // @interface 修饰注解类
}

注意@Override 源码中有3个要点:

  • @interface:修饰注解类使用@interface,而不是interface。这就定义了一个注解 @Override。
  • Java元注解:@Target, @Retention。Java元注解即:定义注解的注解(To annotate the annotation)。
  • 元注解参数:ElementType.METHOD, RetentionPolicy.SOURCE

2.再看@Retention源码(Retention: 保留,滞留之意。)

/* Indicates how long annotations with the annotated type are to
 * be retained.  If no Retention annotation is present on
 * an annotation type declaration, the retention policy defaults to
 * {@code RetentionPolicy.CLASS}.
 *
 * A Retention meta-annotation has effect only if the
 * meta-annotated type is used directly for annotation.  It has no
 * effect if the meta-annotated type is used as a member type in
 * another annotation type.
*/
@Documented     // 表明 注解会被包含在Java API文档中。
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.ANNOTATION_TYPE)
public @interface Retention {
    /**
     * Returns the retention policy.
     * @return the retention policy
     */
    RetentionPolicy value();
}
public enum RetentionPolicy {
    /**
     * Annotations are to be discarded by the compiler.
     */
    SOURCE,

    /**
     * Annotations are to be recorded in the class file by the compiler
     * but need not be retained by the VM at run time.  This is the default
     * behavior.
     */
    CLASS,

    /**
     * Annotations are to be recorded in the class file by the compiler and
     * retained by the VM at run time, so they may be read reflectively.
     *
     * @see java.lang.reflect.AnnotatedElement
     */
    RUNTIME
}

RetentionPolicy.SOURCE 保留在源码级别,被编译器抛弃,如@Override(如上@Override源码);
RetentionPolicy.CLASS 被编译器保留在编译后的class文件,但是被VM抛弃;
RetentionPolicy.RUNTIME 保留至运行时,可以被反射读取。如 @Retention 元注解本身。
** 引申1:如果定义一个注解需要被反射读取,则在定义这个注解的时候将添加@Retention(RetentionPolicy.RUNTIME) 元注解。**

3.再看@Target 元注解,定义了注解应该起作用的地方。

@Documented
@Retention(RetentionPolicy.RUNTIME)   // 保留到运行时
@Target(ElementType.ANNOTATION_TYPE)
public @interface Target {
    /**
     * Returns an array of the kinds of elements an annotation type
     * can be applied to.
     * @return an array of the kinds of elements an annotation type
     * can be applied to.
     */
    ElementType[] value();
}

注解作用位置:

public enum ElementType {
    TYPE,                             // 类,接口(包括注解),enum;
    FIELD,                            // 属性域
    METHOD,                           // 方法
    PARAMETER,                        // 参数
    CONSTRUCTOR,                      // 构造函数
    LOCAL_VARIABLE,                   // 局部变量
    ANNOTATION_TYPE,                  // 注解类型
    PACKAGE,                          // 包

    /**
     * Type parameter declaration
     * @since 1.8
     */
    TYPE_PARAMETER,                   // 表明可以标注 类型参数

    /**
     * Use of a type
     * @since 1.8
     */
    TYPE_USE                          // 可以注解 任何类型名称
}

** 引申2:如果想要自定义一个注解,就必须指定注解作用的位置。作用在 类,方法,属性域,构造函数等。 **

举例 SpringMVC 中的 @RequestMapping。
其源码定义如下:

@Target({ElementType.METHOD, ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Mapping
public @interface RequestMapping {
    // skip its class code.
}

@RequestMapping 的@Target元注解 表明它可以被使用在方法和类(或接口,注解,enum)上。
@RequestMapping 的@Retention元注解表明它可以保留到运行时(RUNTIME),被反射读取。

** 引申3:如果想要自定义注解,除了添加@interface 修饰类名,必须满足上述引申1和引申2。 **
那么如何自定义注解?
请参考:Spring注解原理探索(二)之 Java中如何自定义注解

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

推荐阅读更多精彩内容

  • Spring Cloud为开发人员提供了快速构建分布式系统中一些常见模式的工具(例如配置管理,服务发现,断路器,智...
    卡卡罗2017阅读 134,599评论 18 139
  • Spring Boot 参考指南 介绍 转载自:https://www.gitbook.com/book/qbgb...
    毛宇鹏阅读 46,748评论 6 342
  • 本文章涉及代码已放到github上annotation-study 1.Annotation为何而来 What:A...
    zlcook阅读 29,119评论 15 116
  • 什么是注解(Annotation):Annotation(注解)就是Java提供了一种元程序中的元素关联任何信息和...
    九尾喵的薛定谔阅读 3,143评论 0 2
  • 我叫阿三,当然不是真名——只是被人这样叫的时间长了,我连自己究竟是谁都忘了。其实叫阿三也没什么不好,总比街道上那些...
    王霄垚阅读 1,074评论 0 0