其他分享
首页 > 其他分享> > annotation的参数介绍

annotation的参数介绍

作者:互联网

@Retention 应用到一个注解上的时候,它解释说明了这个注解的的存活时间

@Documented 顾名思义,这个元注解肯定是和文档有关。它的作用是能够将注解中的元素包含到 Javadoc 中去。

@Target Target 是目标的意思,@Target 指定了注解运用的地方。 你可以这样理解,当一个注解被 @Target 注解时,这个注解就被限定了运用的场景。

@Inherited Inherited 是继承的意思,但是它并不是说注解本身可以继承,而是说如果一个超类被 @Inherited 注解过的注解进行注解的话,那么如果它的子类没有被任何注解应用的话,那么这个子类就继承了超类的注解。

@Repeatable 在需要对同一种注解多次使用时,往往需要借助@Repeatable。

 1 @Repeatable(Limits.class)
 2 @Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE,ElementType.TYPE})
 3 @Retention(RetentionPolicy.RUNTIME)
 4 @Documented
 5 public @interface Limit {
 6 String role() default "";
 7 }
 8 
 9 
10 @Target({ElementType.METHOD, ElementType.ANNOTATION_TYPE,ElementType.TYPE})
11 @Retention(RetentionPolicy.RUNTIME)
12 @Documented
13 @interface Limits {
14 Limit[] value();
15 }
16 
17 @Limit(role = "admin")
18 @Limit(role = "user")
19 class Man {
20 String name="";
21 }

我理解的时:Repeatable里面就是指定一个集合。而这个集合当中套用的是当前的这个注解。  也就是说新建一个当前注解的集合类的注解,并将@Repeatable指向这个集合

 

//可以通过此方法判断是否使用了此注解。 UserController是你要判断的哪个类是否使用注解, Limit就是你的注解
boolean hasAnnotation =UserController.class.isAnnotationPresent(Limit.class);

 

标签:Target,介绍,参数,Repeatable,Limit,注解,ElementType,TYPE,annotation
来源: https://www.cnblogs.com/it1042290135/p/16067322.html