前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >重复注解

重复注解

作者头像
阿超
发布2022-08-16 18:58:15
5450
发布2022-08-16 18:58:15
举报
文章被收录于专栏:快乐阿超

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

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

例如这个

代码语言:javascript
复制
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注解,里面参数放另外一个注解,作为它的承载

代码语言:javascript
复制
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

代码语言:javascript
复制
        Field field = UserInfo.class.getDeclaredField("serialVersionUID");
		BeanFieldSort empty = field.getAnnotation(BeanFieldSort.class);
        System.out.println("---");
        System.out.println(Objects.isNull(empty));
//        empty.order();        NPE

正确方式是使用

代码语言:javascript
复制
Field field = UserInfo.class.getDeclaredField("serialVersionUID");
BeanFieldSort.BeanFieldSorts annotation = field.getAnnotation(BeanFieldSort.BeanFieldSorts.class);
for (BeanFieldSort beanFieldSort : annotation.value()) {
    System.out.println(beanFieldSort.order());
}

即可

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021-02-11,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档