重复注解

简介: 重复注解

英雄非无泪,不洒敌人前。男儿七尺躯,愿为祖国捐。——陈辉

java中如果我们需要一个注解能被重复使用

例如这个

package com.ruben.annotation;
import java.lang.annotation.*;
/**
 * @ClassName: BeanFieldSort
 * @Description:
 * @Date: 2020/9/11 22:18
 * *
 * @author: achao<achao1441470436 @ gmail.com>
 * @version: 1.0
 * @since: JDK 1.8
 */
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface BeanFieldSort {
    /**
     * 序号
     *
     * @return
     */
    int order();
}

如果我们直接重复注解,会发现编译错误

我们需要在注解上加上@Repeatable注解,里面参数放另外一个注解,作为它的承载

package com.ruben.annotation;
import java.lang.annotation.*;
/**
 * @ClassName: BeanFieldSort
 * @Description:
 * @Date: 2020/9/11 22:18
 * *
 * @author: achao<achao1441470436 @ gmail.com>
 * @version: 1.0
 * @since: JDK 1.8
 */
@Repeatable(BeanFieldSort.BeanFieldSorts.class)
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface BeanFieldSort {
    /**
     * 序号
     *
     * @return
     */
    int order();
    @Target(ElementType.FIELD)
    @Retention(RetentionPolicy.RUNTIME)
    @interface BeanFieldSorts {
        BeanFieldSort[] value();
    }
}

这样就可以重复注解了

如果我们需要取出注解里面的order

使用之前的方式就会报空指针了,运行结果也打印出来为true

Field field = UserInfo.class.getDeclaredField("serialVersionUID");
    BeanFieldSort empty = field.getAnnotation(BeanFieldSort.class);
        System.out.println("---");
        System.out.println(Objects.isNull(empty));
//        empty.order();        NPE

正确方式是使用

Field field = UserInfo.class.getDeclaredField("serialVersionUID");
BeanFieldSort.BeanFieldSorts annotation = field.getAnnotation(BeanFieldSort.BeanFieldSorts.class);
for (BeanFieldSort beanFieldSort : annotation.value()) {
    System.out.println(beanFieldSort.order());
}

即可

相关文章
|
Java 微服务 Spring
@EnableDiscoveryClient注解的作用
@EnableDiscoveryClient注解的作用 @EnableDiscoveryClient 及@EnableEurekaClient 类似,都是将一个微服务注册到Eureka Server(或其他 服务发现组件,例如Zookeeper、Consul等)
1560 0
|
前端开发 Java 数据库连接
分组序列@GroupSequenceProvider、@GroupSequence控制数据校验顺序,解决多字段联合逻辑校验问题【享学Spring MVC】(中)
分组序列@GroupSequenceProvider、@GroupSequence控制数据校验顺序,解决多字段联合逻辑校验问题【享学Spring MVC】(中)
|
SQL Java 数据库连接
mybatis @Select注解中当参数为空则不添加该参数的判断
public interface OrderMapper extends SqlMapper{ @Select("select * from tbl_order where room like #{room} and mydate like #{my...
4610 0
|
21天前
|
存储 Java 数据库连接
@OneToOne注解的作用
@OneToOne注解的作用
|
4月前
|
Java Spring
@GrpcServise 注解的作用和使用
@GrpcServise 注解的作用和使用
46 0
|
6月前
|
Java 数据库连接 mybatis
mybatis plus字段为null或空字符串把原来的数据也更新了,只需要注解
mybatis plus字段为null或空字符串把原来的数据也更新了,只需要注解
192 0
|
前端开发 安全 Java
分组序列@GroupSequenceProvider、@GroupSequence控制数据校验顺序,解决多字段联合逻辑校验问题【享学Spring MVC】(上)
分组序列@GroupSequenceProvider、@GroupSequence控制数据校验顺序,解决多字段联合逻辑校验问题【享学Spring MVC】(上)
分组序列@GroupSequenceProvider、@GroupSequence控制数据校验顺序,解决多字段联合逻辑校验问题【享学Spring MVC】(上)
|
Java 编译器 API
Java注释和注解的区别
Java注释和注解的区别
156 0
|
JSON 数据格式
@JsonProperty与@JSONField注解用处
@JsonProperty与@JSONField注解用处
|
Java Spring 容器
请举例说明@Qualifier注解?
请举例说明@Qualifier注解?
请举例说明@Qualifier注解?