场景
定义一个注解
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
}
一个父类
@MyAnnotation
public class OneClass {
}
一个子类
public class TwoClass extends OneClass {
}
public class Main {
public static void main(String[] args) {
System.out.println(OneClass.class.getAnnotation(MyAnnotation.class));
System.out.println(TwoClass.class.getAnnotation(MyAnnotation.class));
}
}
@cn.eagle.li.java.reflect.annnotation.MyAnnotation()
null
可以看出 从子类身上是获取不到 注解的
解决方案:
- 使用
Spring中的工具类 AnnotationUtils
public class Main {
public static void main(String[] args) {
System.out.println(OneClass.class.getAnnotation(MyAnnotation.class));
System.out.println(TwoClass.class.getAnnotation(MyAnnotation.class));
System.out.println(AnnotationUtils.findAnnotation(TwoClass.class, MyAnnotation.class));
}
}
@cn.eagle.li.java.reflect.annnotation.MyAnnotation()
null
@cn.eagle.li.java.reflect.annnotation.MyAnnotation()
- 在注解上加上元注解
@Inherited
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Inherited
public @interface MyAnnotation {
}
public class Main {
public static void main(String[] args) {
System.out.println(OneClass.class.getAnnotation(MyAnnotation.class));
System.out.println(TwoClass.class.getAnnotation(MyAnnotation.class));
System.out.println(AnnotationUtils.findAnnotation(TwoClass.class, MyAnnotation.class));
}
}
@cn.eagle.li.java.reflect.annnotation.MyAnnotation()
@cn.eagle.li.java.reflect.annnotation.MyAnnotation()
@cn.eagle.li.java.reflect.annnotation.MyAnnotation()
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/5946.html