摘要:
Java中内置了三种标准注解:@Override@Deprecated@SuppressWarnings提供了四种源注解:@Target@Retention@Documented@Inherited下边的例子通过注解实现了对象到数据表的映射,利用反射机制生成创建表的SQL语句,实现ORM自定义注解:package com.gbx.anotation;import java.lang.annotation.ElementType;import java.lang.annotation.Retention;import java.lang.annotation.RetentionPolicy;im 阅读全文