练习:ORM

Object relationship Mapping→对象关系映射

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/c584851f-12f2-42f0-bc22-36f112dabe3e/Snipaste_2021-05-11_17-52-14.png

package top.ltyzqhh.Reflection;

import java.lang.annotation.*;
import java.lang.reflect.Field;

//练习反射操作注解
public class Test10 {

    public static void main(String[] args) throws ClassNotFoundException, NoSuchFieldException {
        Class c1 = Class.forName("top.ltyzqhh.Reflection.student2");

        //通过反射获得注解
        Annotation[] annotations = c1.getAnnotations();
        for (Annotation annotation : annotations) {
            System.out.println(annotation);
        }

        //获得注解的Value的值
        Tablelty tablelty = (Tablelty) c1.getAnnotation(Tablelty.class);
        String value = tablelty.value();
        System.out.println(value);

        //获得类指定的注解
        Field f = c1.getDeclaredField("id");
        Fieldlty annotation = f.getAnnotation(Fieldlty.class);
        System.out.println(annotation.columnName());
        System.out.println(annotation.type());
        System.out.println(annotation.length());

    }
}

@Tablelty("db_student")
class student2{

    @Fieldlty(columnName = "db_id",type = "int",length = 10)
    private int id;
    @Fieldlty(columnName = "db_age",type = "int",length = 10)
    private int age;
    @Fieldlty(columnName = "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;
    }

    @Override
    public String toString() {
        return "student2{" +
                "id=" + id +
                ", age=" + age +
                ", name='" + name + '\\'' +
                '}';
    }
}

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

//属性的注解
@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
@interface Fieldlty{
    String columnName();
    String type();
    int length();
}

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/13d10311-43ce-482d-a624-1b8501dd53df/Snipaste_2021-05-11_17-29-08.png