java的四个元注解 @Retention @Target @Document @Inherited

Posted weibanggang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java的四个元注解 @Retention @Target @Document @Inherited相关的知识,希望对你有一定的参考价值。

1.  @Retention  :注解的保留位置

             @Retention(RetentionPolicy.SOURCE)  //注解仅存在于源码中,在class字节码文件中不包含

             @Retention(RetentionPolicy.CLASS)   //默认的保留策略,注解会在class字节码文件中存在,但运行时无法获得

             @Retention(RetentionPolicy.RUNTIOME)  //注解会在class字节码文件中存在,在运行时可以通过反射获取到

2.  @Target : 注解的作用目标

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

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

             @Target(ElementType.METHOD)  //方法

             @Target(ElementType.PARAMETER) //方法参数

             @Target(ElementType.CONSTRUCTOR)  //构造函数

             @Target(ELementType.LOCAL_VARIABLE)   //局部变量

             @Target(ElementType.ANNOTATION_TYPE)  //注解

             @Target(ElementType.PACKAGE)  //包

 3.  @Document :  说明注解将被包含在javadoc中

 4.  @Inherited : 说明子类可以继承父类中的注解

 

 

@Target简单图

技术分享图片

 

以上是关于java的四个元注解 @Retention @Target @Document @Inherited的主要内容,如果未能解决你的问题,请参考以下文章

java注解中的元注解

JAVA注解详解(@Target,@Documented,@Retention,@Inherited,@Native,@Repeatable)

JAVA注解详解(@Target,@Documented,@Retention,@Inherited,@Native,@Repeatable)

SpringBoot--自动配置原理-4个注解

注解,多线程

9.java注解(四种元注解:@Retention @Target @Document @Inherited)