`
wfzhanga
  • 浏览: 68351 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

java 注解说明

阅读更多
Class clazz = entity.getClass();
//获取类的指定注解
DBTable dbTable = (DBTable) clazz.getAnnotation(DBTable.class);

for(Field field : clazz.getSuperclass().getDeclaredFields()){
    //判断属性的注解是否存在
    field.isAnnotationPresent(DBColumn.class)
    //获取属性的指定注解
    String annotationName = ((DBColumn) field.getAnnotation(DBColumn.class)).name();
}


 

java中元注解有四个: @Retention @Target @Document @Inherited;

   @Retention:注解的保留位置         

      @Retention(RetentionPolicy.SOURCE)   //注解仅存在于源码中,在class字节码文件中不包含

      @Retention(RetentionPolicy.CLASS)     // 默认的保留策略,注解会在class字节码文件中存在,但运行时无法获得,

      @Retention(RetentionPolicy.RUNTIME)  // 注解会在class字节码文件中存在,在运行时可以通过反射获取到

  

  @Target:注解的作用目标

         
        @Target(ElementType.TYPE)   //接口、类、枚举、注解

        @Target(ElementType.FIELD) //字段、枚举的常量

        @Target(ElementType.METHOD) //方法

        @Target(ElementType.PARAMETER) //方法参数

        @Target(ElementType.CONSTRUCTOR)  //构造函数

        @Target(ElementType.LOCAL_VARIABLE)//局部变量

        @Target(ElementType.ANNOTATION_TYPE)//注解

        @Target(ElementType.PACKAGE) ///包   

 

     @Document:说明该注解将被包含在javadoc中

 

   @Inherited:说明子类可以继承父类中的该注解

 

	/** ID **/
	@DBColumn(name="dicid")
	private Integer dicid;

	/** 字典类型 **/
	@DBColumn(name="dictype")
	private Integer dictype;

	/** 字典名称 **/
	@DBColumn(name="dicname")
	private String dicname;

	/** 编码 **/
	@DBColumn(name="dicno")
	private String dicno;

 

@Inherited
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface DBColumn{
	
	/** 数据库字段名称 **/
	String name();
}

 

 

 

 

 

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics