Java注解源码分析,实现自定义注解通过反射获取

news/2024/11/15 1:48:35/

Annotation 源码分析

  • JDK5.0 引入,可以通过反射机制动态获取,大量应用于java框架中

  • 内置注解

    • @Override

      • 重写父类方法时
      @Target(ElementType.METHOD)  //该注解只能作用于方法
      @Retention(RetentionPolicy.SOURCE)  //在编译时起作用,静态检查
      public @interface Override {}
      
    • @Deprecated

      • 使用它存在风险,可能导致错误
      • 可能在未来版本中不兼容
      • 可能在未来版本中删除
      • 一个更好和更高效的方案已经取代它
      @Documented  //表明可以生成为javadoc文档
      @Retention(RetentionPolicy.RUNTIME)  //在运行时起作用
      //可以作用于构造函数,属性,局部变量,方法,包,模块,参数,类型上
      @Target(value={CONSTRUCTOR, FIELD, LOCAL_VARIABLE, METHOD, PACKAGE, MODULE, PARAMETER, TYPE})
      public @interface Deprecated {/*** Returns the version in which the annotated element became deprecated.* The version string is in the same format and namespace as the value of* the {@code @since} javadoc tag. The default value is the empty* string.** @return the version string* @since 9*/String since() default "";  //一个属性since  String类型,默认为空/*** Indicates whether the annotated element is subject to removal in a* future version. The default value is {@code false}.** @return whether the element is subject to removal* @since 9*/boolean forRemoval() default false;  //是否已删除
      }
      
    • @SuppressWarnings

      • 告诉编译器忽略指定的警告,不用在编译完成后出现警告信息。
    //可以做用于类型,属性,方法,参数,构造函数,局部变量,模块
    @Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE, MODULE})
    //作用于编译期
    @Retention(RetentionPolicy.SOURCE)
    public @interface SuppressWarnings {/*** The set of warnings that are to be suppressed by the compiler in the* annotated element.  Duplicate names are permitted.  The second and* successive occurrences of a name are ignored.  The presence of* unrecognized warning names is <i>not</i> an error: Compilers must* ignore any warning names they do not recognize.  They are, however,* free to emit a warning if an annotation contains an unrecognized* warning name.** <p> The string {@code "unchecked"} is used to suppress* unchecked warnings. Compiler vendors should document the* additional warning names they support in conjunction with this* annotation type. They are encouraged to cooperate to ensure* that the same names work across multiple compilers.* @return the set of warnings to be suppressed*/String[] value(); //String类型数组 写为value时在写注解时可以省略value= 
    }value常见取值:all, to suppress all warnings抑制所有警告boxing, to suppress warnings relative to boxing/unboxing operations抑制与装箱/拆箱操作相关的警告cast, to suppress warnings relative to cast operations抑制与转换操作相关的警告dep-ann, to suppress warnings relative to deprecated annotation抑制与弃用注释相关的警告deprecation, to suppress warnings relative to deprecation抑制与弃用相关的警告fallthrough, to suppress warnings relative to missing breaks in switch statements抑制与 switch 语句中缺少中断相关的警告finally, to suppress warnings relative to finally block that don’t return抑制相对于 finally 块不返回的警告hiding, to suppress warnings relative to locals that hide variable抑制与隐藏变量的局部变量相关的警告incomplete-switch, to suppress warnings relative to missing entries in a switch statement (enum case)抑制与 switch 语句中缺失条目相关的警告(枚举大小写)nls, to suppress warnings relative to non-nls string literals抑制与非 nls 字符串文字相关的警告null, to suppress warnings relative to null analysis抑制与空分析相关的警告rawtypes, to suppress warnings relative to un-specific types when using generics on class params 在类参数上使用泛型时抑制与非特定类型相关的警告restriction, to suppress warnings relative to usage of discouraged or forbidden references抑制与使用不鼓励或禁止的引用有关的警告serial, to suppress warnings relative to missing serialVersionUID field for a serializable class抑制与可序列化类的缺少 serialVersionUID 字段相关的警告static-access, to suppress warnings relative to incorrect static access抑制与不正确的静态访问相关的警告synthetic-access, to suppress warnings relative to unoptimized access from inner classes抑制与来自内部类的未优化访问相关的警告unchecked, to suppress warnings relative to unchecked operations抑制与未经检查的操作相关的警告unqualified-field-access, to suppress warnings relative to field access unqualified抑制与不合格的字段访问相关的警告unused, to suppress warnings relative to unused code抑制与未使用代码相关的警告
  • 元注解:修饰注解的注解

    • 首先解释两个枚举类 1.ElementType

      //表明注解可以作用的位置
      public enum ElementType {/** Class, interface (including annotation type), or enum declaration */TYPE,    //作用于类,接口,枚举/** Field declaration (includes enum constants) */FIELD,/** Method declaration */METHOD,/** Formal parameter declaration */PARAMETER,/** Constructor declaration */CONSTRUCTOR,/** Local variable declaration */LOCAL_VARIABLE,/** Annotation type declaration */ANNOTATION_TYPE,/** Package declaration */PACKAGE,/*** Type parameter declaration** @since 1.8*/TYPE_PARAMETER,/*** Use of a type** @since 1.8*/TYPE_USE,/*** Module declaration.** @since 9*/MODULE
      }
      
    • RetentionPolicy

      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
      }
    • @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();  //枚举类ElementType数组,表明注解可以作用于多个位置
      }
    • @Retention

      @Documented
      @Retention(RetentionPolicy.RUNTIME)
      @Target(ElementType.ANNOTATION_TYPE)
      public @interface Retention {/*** Returns the retention policy.* @return the retention policy*/RetentionPolicy value(); //指明注解的作用生命周期,单个枚举类 RetentionPolicy
      }
      
    • @Documented

      • 默认情况下,javadoc是不包括注解的. 但如果声明注解时指定了 @Documented,则它会被 javadoc 之类的工具处理, 所以注解类型信息也会被包括在生成的文档中,是一个标记注解,没有成员。
      @Documented
      @Retention(RetentionPolicy.RUNTIME)
      @Target(ElementType.ANNOTATION_TYPE)
      public @interface Documented {//为空
      }
      
    • @Inherited

      @Documented
      @Retention(RetentionPolicy.RUNTIME)
      @Target(ElementType.ANNOTATION_TYPE)
      public @interface Inherited {//为空
      }
      

自定义注解并通过反射获取信息

  • @TableName 表明实体类与哪个数据库表对应
@Target({ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface TableName {String value() default "";
}
//在实体类上使用自定义注解
@TableName("cat")
public class Cat {private int age;private String name;public static void main(String[] args) throws ClassNotFoundException {//通过一种获取Class对象的方式 forNameClass<?> c1 = Class.forName("org.yrdm.ch1.Cat");//获取所有注解并打印Annotation[] annotations = c1.getDeclaredAnnotations();for (Annotation annotation : annotations) {System.out.println(annotation);}//获取特定注解并输出value值TableName anno = c1.getDeclaredAnnotation(TableName.class);String value = anno.value();System.out.println(value);}
}运行结果:@org.yrdm.ch1.TableName(value="cat")cat

http://www.ppmy.cn/news/60629.html

相关文章

第五十章 管理镜像 - 在报告异步上使用 Dejournal 过滤器

文章目录 第五十章 管理镜像 - 在报告异步上使用 Dejournal 过滤器在报告异步上使用 Dejournal 过滤器一般镜像注意事项Mirror APIs主要故障转移成员的外部备份在镜像成员上升级 IRIS 第五十章 管理镜像 - 在报告异步上使用 Dejournal 过滤器 在报告异步上使用 Dejournal 过滤…

算法:合唱队

描述 N 位同学站成一排&#xff0c;音乐老师要请最少的同学出列&#xff0c;使得剩下的 K 位同学排成合唱队形。 设K位同学从左到右依次编号为 1&#xff0c;2…&#xff0c;K &#xff0c;他们的身高分别为T1​,T2​,…,TK​ &#xff0c;若存在i(1≤i≤K) 使得T1​<T2​&l…

AutoCAD介绍——带你了解最强的CAD软件

AutoCAD介绍——带你了解最强的CAD软件 什么是AutoCAD应用领域功能特点版本发展总结 什么是AutoCAD Autodesk的AutoCAD是一款世界著名的CAD软件&#xff0c;其全称为“Auto Computer-Aided Design”&#xff0c;是一种计算机辅助设计工具&#xff0c;用于帮助用户创建和编辑二…

【Python百日进阶-Web开发-Feffery】Day618- 趣味dash_18:微型系统--后端验证及md5加密

文章目录 一、环境准备1.1 初始化基础`Python + Dash`环境1.2 本项目中需要增加的第三方包二、本项目B站视频讲解三、页面效果四、项目源码4.1 server.py4.2 app.py4.3 login.py4.4 login_c.py4.5 user.py一、环境准备 1.1 初始化基础Python + Dash环境 CSDN文档参见:https:…

27. Service——Ingress

本章讲解知识点 Ingress 7层路由机制我们之前讲了 Service 的类型。除了 clusterIP 以外,另外三种方式都不推荐,因为这相当于将集群给暴露出去了,不安全,也不符合隔离的思想。 所以在 clusterIP 的基础上结合 Ingress 就可以做到安全将服务开放给外部。 这一节我们着重讲…

API接口的对接流程和注意事项

一、对接API数据接口的步骤通常包括以下几个部分&#xff1a; 了解API&#xff1a;首先需要详细了解API的基本信息、请求格式、返回数据格式、错误码等相关信息。可以查看API的官方文档或者使用API探索工具。同时&#xff0c;还需要明确数据请求的频率和使用权限等限制。 ​​测…

【前端面经】CSS-浮动和清除浮动的方式

浮动和清除浮动的方式 在页面布局中&#xff0c;我们经常会用到浮动来实现一些特殊效果&#xff0c;但是浮动也会引起一些问题。在使用浮动布局时&#xff0c;我们需要清除浮动以避免出现布局问题。本文将介绍浮动的相关知识以及清除浮动的方式。 浮动 浮动是 CSS 中的一种布…

python:评估分类模型性能的常用指标(acc、auc、roc)

本文记录了评估分类模型性能的常用指标ACC、AUC、ROC曲线的计算方法和代码。代码使用python实现。 简介 ACC(Accuracy)是模型的准确率,即模型正确预测的样本数占总样本数的比例。ACC 可以用来评估模型在整体上的分类效果,但它不能很好地反映模型在不同类别上的表现差异。…