1. @interface自定义一个注解
使用@interface自定义一个注解,会自动继承java.lang.annotation.Annotation接口
格式:public @interface 注解名{ 定义的内容 }
2. 添加元注解
1.@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) //包
2.@Retention:【注解的保留位置】
@Retention(RetentionPolicy.SOURCE) //仅存在于源码中,在class字节码文件中不包含
@Retention(RetentionPolicy.CLASS) //默认的策略,会在字节码文件中存在,但运行时无法获得
@Retention(RetentionPolicy.RUNTIME) //在字节码文件中存在,在运行时可以通过反射获取
3.@Inherited:【是否可以被继承】
4.@Documented:【该注解将被包含在javadoc中】
3. 注解类型元素
在自定义注解中,定义内容只能包含注解类型元素
定义注解类型元素时需要注意如下几点:
1.访问修饰符必须为public,不写默认为public;
2.该元素的类型只能是基本数据类型、String、Class、枚举类型、注解类型
(体现了注解的嵌套效果)以及上述类型的一位数组;
3.该元素的名称一般定义为名词,如果注解中只有一个元素,名字起为value
(使用会带来便利操作);
4.()不是定义方法参数的地方,也不能在括号中定义任何参数,仅仅只是一个特殊的语法;
5.default代表默认值,值必须和第2点定义的类型一致;
6.如果没有默认值,后续使用注解时必须给该类型元素赋值。
default为默认值,注解类型元素没有默认值的话需要在使用注解时赋值
有默认值的话可以不赋值也可以赋值,不赋值为默认值
4.通过反射获取自定义注解信息
public class reflect {
public static void main(String[] args) throws ClassNotFoundException {
//通过反射获取注解信息
Class aClass = Class.forName("com.reflect.UserController");
Annotation[] annotations = aClass.getAnnotations();
for (Annotation annotation : annotations) {
System.out.println(annotation);
}
//获取注解类型元素的值
MyAnnotation annotation = (MyAnnotation) aClass.getAnnotation(MyAnnotation.class);
System.out.println(annotation.name()+" "+annotation.age());
}
}