`

Java之Annotation

    博客分类:
  • Java
 
阅读更多

 java注解是附加在代码中的一些元信息,用于一些工具在编译、运行时进行解析和使用,起到说明、配置的功能。
注解不会也不能影响代码的实际逻辑,仅仅起到辅助性的作用。包含在 java.lang.annotation 包中。

 

  使用@interface自定义注解时,自动继承了java.lang.annotation.Annotation接口,由编译程序自动完成其他细节。在定义注解时,不能继承其他的注解或接口。@interface用来声明一个注解,其中的每一个方法实际上是声明了一个配置参数。方法的名称就是参数的名称,返回值类型就是参数的类型(返回值类型只能是基本类型、Class、String、enum)。可以通过default来声明参数的默认值。

 

1、元注解

元注解是指注解的注解。包括  @Retention @Target @Document @Inherited四种。


1.1、@Retention: 定义注解的保留策略

@Retention(RetentionPolicy.SOURCE)   //注解仅存在于源码中,在class字节码文件中不包含
@Retention(RetentionPolicy.CLASS)     // 默认的保留策略,注解会在class字节码文件中存在,但运行时无法获得,
@Retention(RetentionPolicy.RUNTIME)  // 注解会在class字节码文件中存在,在运行时可以通过反射获取到
 
1.2、@Target:定义注解的作用目标
其定义的源码为: 
 
  1. @Documented  
  2. @Retention(RetentionPolicy.RUNTIME)  
  3. @Target(ElementType.ANNOTATION_TYPE)  
  4. public @interface Target {  
  5.     ElementType[] value();  
  6.  
  7.     public enum Color{ BULE,RED,GREEN};
  8.     Color fruitColor() default Color.GREEN;
  9. }  
@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) ///包   
 由以上的源码可以知道,他的elementType 可以有多个,一个注解可以为类的,方法的,字段的等等
1.3、@Document:说明该注解将被包含在javadoc
1.4、@Inherited:说明子类可以继承父类中的该注解
2、java 注解的自定义
      下面是自定义注解的一个例子
 
  1. @Documented  
  2. @Target({ElementType.TYPE,ElementType.METHOD})  
  3. @Retention(RetentionPolicy.RUNTIME)  
  4. public @interface Yts {  
  5.    public enum YtsType{util,entity,service,model}  
  6.      
  7.    public YtsType classType() default YtsType.util;  
  8. }  
  9.    
  1. @Documented  
  2. @Retention(RetentionPolicy.RUNTIME)  
  3. @Target(ElementType.METHOD)  
  4. @Inherited  
  5. public @interface HelloWorld {  
  6.     public String name()default ""; 
  7. }  
 
3. 可以利用反射来获得注解
方法:method.getAnnotation(xxx.class);    类: clazz.getAnnotation(xxxx.class)
 
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics