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

反射操作注解

作者头像
高大北
发布2022-06-14 20:43:15
1380
发布2022-06-14 20:43:15
举报
文章被收录于专栏:java架构计划训练营

示🌰

代码语言:javascript
复制
public class Test12 {
    public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException {
        Class<?> aClass = Class.forName("com.fl.reflection.Student2");
        //通过反射获得注解
        Annotation[] annotations = aClass.getAnnotations();
        for (Annotation annotation:annotations) {
            System.out.println(annotation);
        }
        //获取注解value的值
        Tablell annotation = (Tablell) aClass.getAnnotation(Tablell.class); //获取指定注解
        System.out.println(annotation.value());
        //获得类指定的 注解
        Field name = aClass.getDeclaredField("name");
        Fieldll annotation1 = name.getAnnotation(Fieldll.class);
        System.out.println(annotation1.culumeName());
        System.out.println(annotation1.type());
        System.out.println(annotation1.length());
    }
}
@Tablell("db_student")
class Student2{
    @Fieldll(culumeName="db_id",type = "int",length = 10)
    private int id;
    @Fieldll(culumeName="db_age",type = "int",length = 10)
    private int age;
    @Fieldll(culumeName="db_name",type = "varchar",length = 10)
    private String name;

    public Student2(){

    }

    public Student2(int id, int age, String name) {
        this.id = id;
        this.age = age;
        this.name = name;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public int getAge() {
        return age;
    }

    public void setAge(int age) {
        this.age = age;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

//类名的注解
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@interface Tablell{
    String value();
}

//属性的注解
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface Fieldll{
    String culumeName();
    String type();
    int length();
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

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

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

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

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