annotation

1 annotation是一种特殊的interface(@interface),成员用函数表示,使用时用成员=值列表表示,值可为String,primitive type,数组,enum
2 Deprecated/Override/SuppressWarnings 是三个@interface,Target,Retention也是。Hibernate Annotation中的 Entity,Table,Id,Column,GenetatedValue,Basic,Transient,Temporal,不过没给成员都要查isAnnotationPresent,那也太麻烦了,有时间看看hibernate这些框架是如何做的

 

 

 

你可能感兴趣的:(框架,Hibernate)