注解

##元注解

@Target

  1. 注解传入ElementType作为参数

    1. public enum ElementType {
    2. /**标明该注解可以用于类、接口(包括注解类型)或enum声明*/
    3. TYPE,
    4. /** 标明该注解可以用于字段(域)声明,包括enum实例 */
    5. FIELD,
    6. /** 标明该注解可以用于方法声明 */
    7. METHOD,
    8. /** 标明该注解可以用于参数声明 */
    9. PARAMETER,
    10. /** 标明注解可以用于构造函数声明 */
    11. CONSTRUCTOR,
    12. /** 标明注解可以用于局部变量声明 */
    13. LOCAL_VARIABLE,
    14. /** 标明注解可以用于注解声明(应用于另一个注解上)*/
    15. ANNOTATION_TYPE,
    16. /** 标明注解可以用于包声明 */
    17. PACKAGE,
    18. /**
    19. * 标明注解可以用于类型参数声明(1.8新加入)
    20. * @since 1.8
    21. */
    22. TYPE_PARAMETER,
    23. /**
    24. * 类型使用声明(1.8新加入)
    25. * @since 1.8
    26. */
    27. TYPE_USE
    28. }

@Retention:标识了注解的声明周期

  1. 使用RetentionPolicy作为参数
  • SOURCE:注解将被编译器丢弃(该类型的注解信息只会保留在源码里,源码经过编译后,注解信息会被丢弃,不会保留在编译好的class文件里)
  • CLASS:注解在class文件中可用,但会被VM丢弃(该类型的注解信息会保留在源码里和class文件里,在执行的时候,不会加载到虚拟机中),请注意,当注解未定义Retention值时,默认值是CLASS,如Java内置注解,@Override、@Deprecated、@SuppressWarnning等
  • RUNTIME:注解信息将在运行期(JVM)也保留,因此可以通过反射机制读取注解的信息(源码、class文件和执行的时候都有注解的信息),如SpringMvc中的@Controller、@Autowired、@RequestMapping等。

    1. public enum RetentionPolicy {
    2. /**
    3. * Annotations are to be discarded by the compiler.
    4. */
    5. SOURCE,
    6. /**
    7. * Annotations are to be recorded in the class file by the compiler
    8. * but need not be retained by the VM at run time. This is the default
    9. * behavior.
    10. */
    11. CLASS,
    12. /**
    13. * Annotations are to be recorded in the class file by the compiler and
    14. * retained by the VM at run time, so they may be read reflectively.
    15. *
    16. * @see java.lang.reflect.AnnotatedElement
    17. */
    18. RUNTIME
    19. }

    @Inherited

  1. 当该注解标注在父类上的时候,其子类也会有该注解 ```java @Inherited @Documented @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface DocumentA { }

@Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface DocumentB { }

@DocumentA class A{ }

class B extends A{ }

@DocumentB class C{ }

class D extends C{ }

//测试 public class DocumentDemo {

  1. public static void main(String... args){
  2. A instanceA=new B();
  3. System.out.println("已使用的@Inherited注解:"+Arrays.toString(instanceA.getClass().getAnnotations()));
  4. C instanceC = new D();
  5. System.out.println("没有使用的@Inherited注解:"+Arrays.toString(instanceC.getClass().getAnnotations()));
  6. }
  7. /**
  8. * 运行结果:
  9. 已使用的@Inherited注解:[@com.zejian.annotationdemo.DocumentA()]
  10. 没有使用的@Inherited注解:[]
  11. */

}

  1. 4. @Documented
  2. 1. 被修饰的注解会生成到javadoc
  3. 5. @Repeatable
  4. 1. 元注解@RepeatableJDK1.8新加入的,它**表示在同一个位置重复相同的注解**。
  5. 1. 在没有该注解前,一般是无法在同一个类型上使用相同的注解的
  6. 1. ![image.png](https://cdn.nlark.com/yuque/0/2021/png/8429887/1611058537362-16e59ed5-2bef-445b-9749-ae5e9d2f2318.png#align=left&display=inline&height=182&margin=%5Bobject%20Object%5D&name=image.png&originHeight=182&originWidth=456&size=15223&status=done&style=none&width=456)
  7. ![image.png](https://cdn.nlark.com/yuque/0/2021/png/8429887/1611058614827-24dc51f9-e3fa-4a2a-87c1-55bc6ca6d4f6.png#align=left&display=inline&height=547&margin=%5Bobject%20Object%5D&name=image.png&originHeight=547&originWidth=830&size=57709&status=done&style=none&width=830)<br />在Java8新增了@Repeatable注解后就可以采用如下的方式定义并使用了
  8. ```java
  9. package com.zejian.annotationdemo;
  10. import java.lang.annotation.*;
  11. /**
  12. * Created by zejian on 2017/5/20.
  13. * Blog : http://blog.csdn.net/javazejian [原文地址,请尊重原创]
  14. */
  15. //使用Java8新增@Repeatable原注解
  16. @Target({ElementType.TYPE,ElementType.FIELD,ElementType.METHOD})
  17. @Retention(RetentionPolicy.RUNTIME)
  18. @Repeatable(FilterPaths.class)//参数指明接收的注解class
  19. public @interface FilterPath {
  20. String value();
  21. }
  22. // 有一个注解数组作为其内部对象
  23. @Target(ElementType.TYPE)
  24. @Retention(RetentionPolicy.RUNTIME)
  25. @interface FilterPaths {
  26. FilterPath[] value();
  27. }
  28. //使用案例
  29. @FilterPath("/web/update")
  30. @FilterPath("/web/add")
  31. @FilterPath("/web/delete")
  32. class AA{ }

@Repeatable

后,将使用@FilterPaths注解作为接收同一个类型上重复注解的容器,而每个@FilterPath则负责保存指定的路径串。

  • 为了处理上述的新增注解,Java8还在AnnotatedElement接口新增了getDeclaredAnnotationsByType() 和 getAnnotationsByType()两个方法并在接口给出了默认实现,在指定@Repeatable的注解时,可以通过这两个方法获取到注解相关信息。
    • 注意getDeclaredAnnotationsByType方法获取到的注解不包括父类
    • 其实当 getAnnotationsByType()方法调用时,其内部先执行了getDeclaredAnnotationsByType方法,只有当前类不存在指定注解时,getAnnotationsByType()才会继续从其父类寻找,
    • 注意如果@FilterPath和@FilterPaths没有使用了@Inherited的话,仍然无法获取。
  • 旧版API中的getDeclaredAnnotation()和 getAnnotation()是不对@Repeatable注解的处理的(除非该注解没有在同一个声明上重复出现)。 ```java @FilterPath(“/web/list”) class CC { }

//使用案例 @FilterPath(“/web/update”) @FilterPath(“/web/add”) @FilterPath(“/web/delete”) class AA extends CC{ public static void main(String[] args) {

  1. Class<?> clazz = AA.class;
  2. //通过getAnnotationsByType方法获取所有重复注解
  3. FilterPath[] annotationsByType = clazz.getAnnotationsByType(FilterPath.class);
  4. FilterPath[] annotationsByType2 = clazz.getDeclaredAnnotationsByType(FilterPath.class);
  5. if (annotationsByType != null) {
  6. for (FilterPath filter : annotationsByType) {
  7. System.out.println("1:"+filter.value());
  8. }
  9. }
  10. System.out.println("-----------------");
  11. if (annotationsByType2 != null) {
  12. for (FilterPath filter : annotationsByType2) {
  13. System.out.println("2:"+filter.value());
  14. }
  15. }
  16. //getAnnotation 无法处理@Repeatable
  17. System.out.println("使用getAnnotation的结果:"+clazz.getAnnotation(FilterPath.class));
  18. /**
  19. * 执行结果(当前类拥有该注解FilterPath,则不会从CC父类寻找)
  20. 1:/web/update
  21. 1:/web/add
  22. 1:/web/delete
  23. -----------------
  24. 2:/web/update
  25. 2:/web/add
  26. 2:/web/delete
  27. 使用getAnnotation的结果:null
  28. */
  29. }

}

  1. 如果子类没有实现注解,那么
  2. ```java
  3. /**
  4. * Created by zejian on 2017/5/20.
  5. * Blog : http://blog.csdn.net/javazejian [原文地址,请尊重原创]
  6. */
  7. //使用Java8新增@Repeatable原注解
  8. @Target({ElementType.TYPE,ElementType.FIELD,ElementType.METHOD})
  9. @Retention(RetentionPolicy.RUNTIME)
  10. @Inherited //添加可继承元注解
  11. @Repeatable(FilterPaths.class)
  12. public @interface FilterPath {
  13. String value();
  14. }
  15. @Target(ElementType.TYPE)
  16. @Retention(RetentionPolicy.RUNTIME)
  17. @Inherited //添加可继承元注解
  18. @interface FilterPaths {
  19. FilterPath[] value();
  20. }
  21. @FilterPath("/web/list")
  22. @FilterPath("/web/getList")
  23. class CC { }
  24. //AA上不使用@FilterPath注解,getAnnotationsByType将会从父类查询
  25. class AA extends CC{
  26. public static void main(String[] args) {
  27. Class<?> clazz = AA.class;
  28. //通过getAnnotationsByType方法获取所有重复注解
  29. FilterPath[] annotationsByType = clazz.getAnnotationsByType(FilterPath.class);
  30. FilterPath[] annotationsByType2 = clazz.getDeclaredAnnotationsByType(FilterPath.class);
  31. if (annotationsByType != null) {
  32. for (FilterPath filter : annotationsByType) {
  33. System.out.println("1:"+filter.value());
  34. }
  35. }
  36. System.out.println("-----------------");
  37. if (annotationsByType2 != null) {
  38. for (FilterPath filter : annotationsByType2) {
  39. System.out.println("2:"+filter.value());
  40. }
  41. }
  42. System.out.println("使用getAnnotation的结果:"+clazz.getAnnotation(FilterPath.class));
  43. /**
  44. * 执行结果(当前类没有@FilterPath,getAnnotationsByType方法从CC父类寻找)
  45. 1:/web/list
  46. 1:/web/getList
  47. -----------------
  48. 使用getAnnotation的结果:null
  49. */
  50. }
  51. }

注意定义@FilterPath和@FilterPath时必须指明@Inherited,getAnnotationsByType方法否则依旧无法从父类获取@FilterPath注解,这是为什么呢,不妨看看getAnnotationsByType方法的实现源码:

  1. //接口默认实现方法
  2. default <T extends Annotation> T[] getAnnotationsByType(Class<T> annotationClass) {
  3. //先调用getDeclaredAnnotationsByType方法
  4. T[] result = getDeclaredAnnotationsByType(annotationClass);
  5. //判断当前类获取到的注解数组是否为0
  6. if (result.length == 0 && this instanceof Class &&
  7. //判断定义注解上是否使用了@Inherited元注解
  8. AnnotationType.getInstance(annotationClass).isInherited()) { // Inheritable
  9. //从父类获取
  10. Class<?> superClass = ((Class<?>) this).getSuperclass();
  11. if (superClass != null) {
  12. result = superClass.getAnnotationsByType(annotationClass);
  13. }
  14. }
  15. return result;
  16. }

声明注解

  1. //声明Test注解
  2. @Target(ElementType.METHOD)
  3. @Retention(RetentionPolicy.RUNTIME)
  4. public @interface Test {
  5. String name() default "";
  6. }

使用了@interface声明了Test注解,并使用@Target注解传入ElementType.METHOD参数来标明@Test只能用于方法上,@Retention(RetentionPolicy.RUNTIME)则用来表示该注解生存期是运行时,从代码上看注解的定义很像接口的定义,确实如此,毕竟在编译后也会生成Test.class文件。
关于注解支持的元素数据类型除了上述的String name() default "";还支持如下数据类型

  • 所有基本类型(int,float,boolean,byte,double,char,long,short)
  • String
  • Class
  • enum
  • Annotation
  • 上述类型的数组
  1. 倘若使用了其他数据类型,编译器将会丢出一个编译错误
  2. 声明注解元素时可以使用基本类型但不允许使用任何包装类型
  3. 注解也可以作为元素的类型,也就是嵌套注解 ```java package com.zejian.annotationdemo;

import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target;

/**

  • Created by wuzejian on 2017/5/19.
  • 数据类型使用Demo */

@Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) @interface Reference{ boolean next() default false; }

public @interface AnnotationElementDemo { //枚举类型 enum Status {FIXED,NORMAL};

  1. //声明枚举
  2. Status status() default Status.FIXED;
  3. //布尔类型
  4. boolean showSupport() default false;
  5. //String类型
  6. String name()default "";
  7. //class类型
  8. Class<?> testCase() default Void.class;
  9. //注解嵌套
  10. Reference reference() default @Reference(next=true);
  11. //数组类型
  12. long[] value();

}

  1. 1. 元素不能有不确定的值。也就是说,元素必须要么具有**默认值**,要么在使用注解时**初始化**元素的值。
  2. 1. 对于非基本类型的元素,无论是在源代码中声明,还是在注解接口中定义默认值,都不能以null作为值
  3. <a name="xddax"></a>
  4. #### 不能继承注解
  5. 注解是不支持继承的,因此不能使用关键字extends来继承某个@interface,但注解在编译后,编译器会自动继承java.lang.annotation.Annotation接口.
  6. ```java
  7. /**
  8. * Created by wuzejian on 2017/5/18.
  9. * 对应数据表注解
  10. */
  11. @Target(ElementType.TYPE)//只能应用于类上
  12. @Retention(RetentionPolicy.RUNTIME)//保存到运行时
  13. public @interface DBTable {
  14. String name() default "";
  15. }

虽然反编译后发现DBTable注解继承了Annotation接口,请记住,即使Java的接口可以实现多继承,但定义注解时依然无法使用extends关键字继承@interface。

  1. package com.zejian.annotationdemo;
  2. import java.lang.annotation.Annotation;
  3. //反编译后的代码
  4. public interface DBTable extends Annotation
  5. {
  6. public abstract String name();
  7. }

注解元素赋值

如果被赋值的元素只有一个并且名为value,那么不需要使用key进行标识
否则需要使用kv进行标识

  1. //定义注解
  2. @Target(ElementType.FIELD)
  3. @Retention(RetentionPolicy.RUNTIME)
  4. @interface IntegerVaule{
  5. int value() default 0;
  6. String name() default "";
  7. }
  8. //使用注解
  9. public class QuicklyWay {
  10. //当只想给value赋值时,可以使用以下快捷方式
  11. @IntegerVaule(20)
  12. public int age;
  13. //当name也需要赋值时必须采用key=value的方式赋值
  14. @IntegerVaule(value = 10000,name = "MONEY")
  15. public int money;
  16. }

内置注解

  • @Override:用于标明此方法覆盖了父类的方法

image.png

  • @Deprecated:用于标明已经过时的方法或类

image.png

  • @SuppressWarnnings:用于有选择的关闭编译器对类、方法、成员变量、变量初始化的警告

image.png

  • 内部有一个String数组,主要接收值如下:
    • deprecation:使用了不赞成使用的类或方法时的警告;
    • unchecked:执行了未检查的转换时的警告,例如当使用集合时没有用泛型 (Generics) 来指定集合保存的类型;
    • fallthrough:当 Switch 程序块直接通往下一种情况而没有 Break 时的警告;
    • path:在类路径、源文件路径等中有不存在的路径时的警告;
    • serial:当在可序列化的类上缺少 serialVersionUID 定义时的警告;
    • finally:任何 finally 子句不能正常完成时的警告;
    • all:关于以上所有情况的警告。
    • image.png
    • image.png

      注解&反射

      AnnotatedElement
      这个接口(AnnotatedElement)的对象代表了在当前JVM中的一个“被注解元素”(可以是Class,Method,Field,Constructor,Package等)。通过该接口提供的方法可以利用反射技术地读取注解的信息,如反射包的Constructor类、Field类、Method类、Package类和Class类都实现了AnnotatedElement接口,
      image.pngimage.png
返回值 方法名称 说明
<A extends Annotation> getAnnotation(Class<A> annotationClass) 该元素如果存在指定类型的注解,则返回这些注解,否则返回 null。
Annotation[] getAnnotations() 返回此元素上存在的所有注解,包括从父类继承的
boolean isAnnotationPresent(Class<? extends Annotation> annotationClass) 如果指定类型的注解存在于此元素上,则返回 true,否则返回 false。
Annotation[] getDeclaredAnnotations() 返回直接存在于此元素上的所有注解,注意,不包括父类的注解,调用者可以随意修改返回的数组;这不会对其他调用者返回的数组产生任何影响,没有则返回长度为0的数组

简单代码:

  1. package com.zejian.annotationdemo;
  2. import java.lang.annotation.Annotation;
  3. import java.util.Arrays;
  4. /**
  5. * Created by zejian on 2017/5/20.
  6. * Blog : http://blog.csdn.net/javazejian [原文地址,请尊重原创]
  7. */
  8. @DocumentA
  9. class A{ }
  10. //继承了A类
  11. @DocumentB
  12. public class DocumentDemo extends A{
  13. public static void main(String... args){
  14. Class<?> clazz = DocumentDemo.class;
  15. //根据指定注解类型获取该注解
  16. DocumentA documentA=clazz.getAnnotation(DocumentA.class);
  17. System.out.println("A:"+documentA);
  18. //获取该元素上的所有注解,包含从父类继承
  19. Annotation[] an= clazz.getAnnotations();
  20. System.out.println("an:"+ Arrays.toString(an));
  21. //获取该元素上的所有注解,但不包含继承!
  22. Annotation[] an2=clazz.getDeclaredAnnotations();
  23. System.out.println("an2:"+ Arrays.toString(an2));
  24. //判断注解DocumentA是否在该元素上
  25. boolean b=clazz.isAnnotationPresent(DocumentA.class);
  26. System.out.println("b:"+b);
  27. /**
  28. * 执行结果:
  29. A:@com.zejian.annotationdemo.DocumentA()
  30. an:[@com.zejian.annotationdemo.DocumentA(), @com.zejian.annotationdemo.DocumentB()]
  31. an2:@com.zejian.annotationdemo.DocumentB()
  32. b:true
  33. */
  34. }
  35. }

使用注解来生成数据库表

  • 注解 ```java /**
    • Created by wuzejian on 2017/5/18.
    • 表注解 */ @Target(ElementType.TYPE)//只能应用于类上 @Retention(RetentionPolicy.RUNTIME)//保存到运行时 public @interface DBTable { String name() default “”; }

/**

  • Created by wuzejian on 2017/5/18.
  • 注解Integer类型的字段 */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface SQLInteger { //该字段对应数据库表列名 String name() default “”; //嵌套注解 Constraints constraint() default @Constraints; }

/**

  • Created by wuzejian on 2017/5/18.
  • 注解String类型的字段 */ @Target(ElementType.FIELD) @Retention(RetentionPolicy.RUNTIME) public @interface SQLString {

    //对应数据库表的列名 String name() default “”;

    //列类型分配的长度,如varchar(30)的30 int value() default 0;

    Constraints constraint() default @Constraints; }

/**

  • Created by wuzejian on 2017/5/18.
  • 约束注解 */

@Target(ElementType.FIELD)//只能应用在字段上 @Retention(RetentionPolicy.RUNTIME) public @interface Constraints { //判断是否作为主键约束 boolean primaryKey() default false; //判断是否允许为null boolean allowNull() default false; //判断是否唯一 boolean unique() default false; }

/**

  • Created by wuzejian on 2017/5/18.
  • 数据库表Member对应实例类bean */ @DBTable(name = “MEMBER”) public class Member { //主键ID @SQLString(name = “ID”,value = 50, constraint = @Constraints(primaryKey = true)) private String id;

    @SQLString(name = “NAME” , value = 30) private String name;

    @SQLInteger(name = “AGE”) private int age;

    @SQLString(name = “DESCRIPTION” ,value = 150 , constraint = @Constraints(allowNull = true)) private String description;//个人描述

    //省略set get….. } ```

  1. @DBTable(用于类上)、@Constraints(用于字段上)、 @SQLString(用于字段上)、@SQLString(用于字段上)并在Member类中使用这些注解
  2. 使用了嵌套注解@Constraints,该注解主要用于判断字段是否为null或者字段是否唯一。
  3. 注解生命周期必须为@Retention(RetentionPolicy.RUNTIME),即运行时,这样才可以使用反射机制获取其信息。
  • 自定义处理器的编写 ```java package com.zejian.annotationdemo; import java.lang.annotation.Annotation; import java.lang.reflect.Field; import java.util.ArrayList; import java.util.List;

/**

  • Created by zejian on 2017/5/13.
  • Blog : http://blog.csdn.net/javazejian [原文地址,请尊重原创]
  • 运行时注解处理器,构造表创建语句 */ public class TableCreator {

    public static String createTableSql(String className) throws ClassNotFoundException { Class<?> cl = Class.forName(className); DBTable dbTable = cl.getAnnotation(DBTable.class); //如果没有表注解,直接返回 if(dbTable == null) { System.out.println(

    1. "No DBTable annotations in class " + className);

    return null; } String tableName = dbTable.name(); // If the name is empty, use the Class name: if(tableName.length() < 1) tableName = cl.getName().toUpperCase(); List columnDefs = new ArrayList(); //通过Class类API获取到所有成员字段 for(Field field : cl.getDeclaredFields()) { String columnName = null; //获取字段上的注解 Annotation[] anns = field.getDeclaredAnnotations(); if(anns.length < 1)

    1. continue; // Not a db table column

    //判断注解类型 if(anns[0] instanceof SQLInteger) {

    1. SQLInteger sInt = (SQLInteger) anns[0];
    2. //获取字段对应列名称,如果没有就是使用字段名称替代
    3. if(sInt.name().length() < 1)
    4. columnName = field.getName().toUpperCase();
    5. else
    6. columnName = sInt.name();
    7. //构建语句
    8. columnDefs.add(columnName + " INT" +
    9. getConstraints(sInt.constraint()));

    } //判断String类型 if(anns[0] instanceof SQLString) {

    1. SQLString sString = (SQLString) anns[0];
    2. // Use field name if name not specified.
    3. if(sString.name().length() < 1)
    4. columnName = field.getName().toUpperCase();
    5. else
    6. columnName = sString.name();
    7. columnDefs.add(columnName + " VARCHAR(" +
    8. sString.value() + ")" +
    9. getConstraints(sString.constraint()));

    }

  1. }
  2. //数据库表构建语句
  3. StringBuilder createCommand = new StringBuilder(
  4. "CREATE TABLE " + tableName + "(");
  5. for(String columnDef : columnDefs)
  6. createCommand.append("\n " + columnDef + ",");
  7. // Remove trailing comma
  8. String tableCreate = createCommand.substring(
  9. 0, createCommand.length() - 1) + ");";
  10. return tableCreate;

}

  1. /**
  2. * 判断该字段是否有其他约束
  3. * @param con
  4. * @return
  5. */

private static String getConstraints(Constraints con) { String constraints = “”; if(!con.allowNull()) constraints += “ NOT NULL”; if(con.primaryKey()) constraints += “ PRIMARY KEY”; if(con.unique()) constraints += “ UNIQUE”; return constraints; }

public static void main(String[] args) throws Exception { String[] arg={“com.zejian.annotationdemo.Member”}; for(String className : arg) { System.out.println(“Table Creation SQL for “ + className + “ is :\n” + createTableSql(className)); }

  1. /**
  2. * 输出结果:
  3. Table Creation SQL for com.zejian.annotationdemo.Member is :
  4. CREATE TABLE MEMBER(
  5. ID VARCHAR(50) NOT NULL PRIMARY KEY,
  6. NAME VARCHAR(30) NOT NULL,
  7. AGE INT NOT NULL,
  8. DESCRIPTION VARCHAR(150)
  9. );
  10. */

} } `` 通过传递Member的全路径后通过Class.forName()方法获取到Member的class对象,然后利用Class对象中的方法获取所有成员字段Field,最后利用field.getDeclaredAnnotations()`遍历每个Field上的注解再通过注解的类型判断来构建建表的SQL语句。