您好,登錄后才能下訂單哦!
Table,用類表示數據庫的表
@Target(value= {ElementType.METHOD,ElementType.TYPE})
@Retention(RetentionPolicy.RUNTIME)
public @interface Table{
String value();
}
類中的屬性,每個屬性表示一個字段
@Target(value= ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Fields {
String columnName();
String type();
int length();
}
類:
@Table("tb_student")
public class Student {
@Fields(columnName="id",type="int",length=10)
private int id;
@Fields(columnName="studentName",type="varchar",length=10)
private String studentName;
@Fields(columnName="age",type="int",length=3)
private int age;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getStudentName() {
return studentName;
}
public void setStudentName(String studentName) {
this.studentName = studentName;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}
}
解析器:
public class Deam {
public static void main(String[] args) throws InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, NoSuchMethodException, SecurityException, NoSuchFieldException {
try {
Class c=Class.forName("cn.sxt.in.Student");
Annotation[] annotation= c.getAnnotations(); //獲得類的所有注解,只是類的,不包括方法等
for(Annotation a:annotation)
{
System.out.println(a);
}
//獲得指定類的注解
Table tb=(Table) c.getAnnotation(Table.class);
System.out.println(tb.value());
//獲得屬性的注解
Field f=c.getDeclaredField("studentName"); //通過內容返回屬性
Fields f2=f.getAnnotation(Fields.class); //通過屬性返回注解
System.out.println(f2.columnName()+"-->"+f2.type()+"-->"+f2.length());
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
}
}
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。