Spring基础元注解@Target、@Retention、@Documented、@Inherited

什么是注解?

Spring中,@interface 表示当前类是一个注解类。

  • 注解类不能继承其他注解类,因为注解类在编译时会自动继承java.lang.annotation.Annotation
  • 注解类中,每一个方法,其实都是定义了一个参数。方法的返回值类型即为参数的类型,可以通过default声明默认值。

Spring基础元注解

注解的注解,被称为元注解

@Target

@Target 可以指定当前注解的作用目标,参数类型:ElementType;

  • @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):包

@Retention

@Retention 用于指定当前注解被保留到什么阶段,一共三个阶段:.java文件 → .class文件 → 内存中的字节码。

  • @Retention(RetentionPolicy.SOURCE):只保留在源文件,即.java文件中
  • @Retention(RetentionPolicy.CLASS):保留到.class文件中,在JVM加载class文件时被丢弃
  • @Retention(RetentionPolicy.RUNTIME):JVM加载class文件后,此注解依然存在

@Documented

@Documented 表明修饰的内容被javadoc工具记录。默认情况下,javadoc不包含注解。但是如果声明注解时指定了 @Documented ,则它会被javadoc之类的工具处理,所以注解类型信息也会被包含在生成的文档中。

@Inherited

如果一个注解类在定义的时候,被 @Inherited 修饰,那么其子类会自动继承此注解类的注解。

你可能感兴趣的:(Spring,spring,java,后端)