@Target @Retention @Documented @Inherited
public enum ElementType { /** 类、接口(包括注解类型)或枚举声明 */ TYPE, /** 字段声明(包括枚举常量) */ FIELD, /** 方法声明 */ METHOD, /** 形式参数声明 */ PARAMETER, /** 构造函数声明 */ CONSTRUCTOR, /** 局部变量声明 */ LOCAL_VARIABLE, /** 注解类型声明 */ ANNOTATION_TYPE, /** 包装声明 */ PACKAGE, /** * 类型参数声明 * * 自从:1.8 */ TYPE_PARAMETER, /** * 使用类型 * * 自从:1.8 */ TYPE_USE }
生命周期类型 | 描述 |
---|---|
RetentionPolicy.SOURCE | 编译时被丢弃,不包含在类文件中 |
RetentionPolicy.CLASS | JVM加载时被丢弃,包含在类文件中,默认值 |
RetentionPolicy.RUNTIME | 由JVM 加载,包含在类文件中,在运行时可以被获取到 |
修饰符: 访问修饰符必须为public,不写默认为pubic;
关键字: 关键字为@interface;
注解名称: 注解名称为自定义注解的名称,使用时还会用到;
注解内容: 注解中内容,对注解的描述。
@Documented @Inherited @Target({ ElementType.FIELD, ElementType.METHOD ,ElementType.TYPE}) //可以在字段、枚举的常量、方法 @Retention(RetentionPolicy.RUNTIME) public @interface Init { String value() default ""; }
数据模型使用注解
public class User { private String name; private String age; public String getName() { return name; } @Init("louis") public User setName(String name) { this.name = name; return this; } public String getAge() { return age; } @Init("22") public User setAge(String age) { this.age = age; return this; } }
定义一个“注解解析器”
public class userFactory { public static User create() { User user = new User(); // 获取User类中所有的方法(getDeclaredMethods也行) Method[] methods = User.class.getMethods(); try { for (Method method : methods) { // 如果一个注解指定注解类型是存在于此元素上此方法返回true,否则返回false //参数 -- 对应于注解类型的Class对象 if (method.isAnnotationPresent(Init.class)) { //此方法返回该元素的注解在此元素的指定注释类型(如果存在),否则返回null Init init = method.getAnnotation(Init.class); // 如果Method代表了一个方法 那么调用它的invoke就相当于执行了它代表的这个方法,在这里就是给set方法赋值 method.invoke(user, init.value()); } } } catch (Exception e) { e.printStackTrace(); return null; } return user; } }
测试运行