java自定义Annotation

2 篇文章 0 订阅
自定义Annotation概念篇
来看一个最简单的annotation

package com.cts.elt.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
importjava.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface MyAnnotation1 {
String value();
}

1. Annotation需要声明为@interface这样的东西
2. @Target(ElementType.TYPE)
代码这个annotation必须且一定要注释在什么语句上面
ElementType.TYPE代表此Annotation必须声明在public class Student{…}的上面,而不能写在任何的method{}(方法)或者是field(属性)的上方。
@Target: 表示该注解可以用于什么地方。可用ElementType枚举类型主要有:
TYPE : 类、接口或enum声明
FIELD: 域(属性)声明
METHOD: 方法声明
PARAMETER: 参数声明
CONSTRUCTOR: 构造方法声明
LOCAL_VARIABLE:局部变量声明
ANNOTATION_TYPE:注释类型声明
PACKAGE: 包声明
3. Retention如果设为了RUNTIME,代表此annotation的具体实现可以在运行时用类反射来实现
我们看到了,annotation一般为一个@interface,也没啥具体的implementation(实现)
怎么实现这个annotation呢?类反射
@Retention: 表示需要在什么级别保存该注解信息。
可用RetentionPolicy枚举类型主要有:
SOURCE: 注解将被编译器丢弃。
CLASS : 注解在class文件中可能。但会被VM丢弃。
RUNTIME: VM将在运行时也保存注解(如果需要通过反射读取注解,则
使用该值)。
4. @Documented
@Documented: 将此注解包含在Javadoc中。
上面这个MyAnnotation1.class文件包含一个值,下面来一个含有两个值的annotation

package com.cts.elt.annotation;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
importjava.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface MyAnnotation2 {
String description();
boolean isAnnotation();
}

关键是来看这两个自定义annotation的用法:

package com.cts.elt.annotation;
@MyAnnotation1("this isannotation1")
public class AnnotationDemo {
@MyAnnotation2(description = "this is annotation2", isAnnotation =true)
public void sayHello() {
System.out.println("hello world!");
}
}

如果把@MyAnnotation1与@MyAnnotation2的位置换一换,会怎么样?请自己动手在eclipse里试试看,嘿嘿,就知道这个Retention的用法了
自定义annotation高级篇
首先,网上的一些关于自定义annotation教程所举的例子都不太好!
就2个例子,然后一帮子人在那边到处COPY这两个例子然后到处转发,搞得来大家云里雾里一头雾水,同时一群企业的面试官也就喜欢拿这个自定义annotation来作面试题,好像会个annotation就能给Senior software engineer了。
其实Annotation就是类反射加点枚举,比个数据结构里的冒泡排序还简单,没这么夸张,关键是例子举的不好,现在来看看下面这个例子。
通过例子来看一个简单的Annotation
Hibernate的机制是可能通过JAVA类然后逆向成数据库里的某个表,大家还记得吧?
比如说
Student.java文件
如果你这样写:

@Table(name=”T_STUDENT”)
Public class Student{…}
代表这个类对应的数据库表叫T_STUDENT
如果再有下面这样的写法:

Public class Student{
Private String id=””;
@Id(init=1)
Public voidsetName(String id){
This.id=id;
}
}

就代表id这个field是一个主键,它的初始值为1。
好了,现在开始我们自己的例子,设有一CLASS叫Student,其中有三个fields:
private String name = "";
private int age = 0;
private String studentId = "";
相应的每一个field有一对的set, get方法

然后我在每个set方法上造一个annotation叫ValueBind的注解,其作用是:
只要set方法上带有ValueBind注解,它就会根据这个字段的类型把一个默认值,自动赋给Student类中相对应的field。
先来看一下Student类:

import java.io.Serializable;

public class Student implements Serializable {

private static final long serialVersionUID = 4268835985883997117L;
private String name = "";
private int age;
private String studentId;
public String getName() {
return name;
}
@ValueBind(type=MyFieldType.STRING,value="kk")
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}

@ValueBind(type=MyFieldType.INT,value="24")
public void setAge(int age) {
this.age = age;
}
public String getStudentId() {
return studentId;
}
@ValueBind(type=MyFieldType.STRING,value="001")
public void setStudentId(String studentId) {
this.studentId = studentId;
}

}

自定义一个ValueBind的Annotation
这个@ValueBoind就是我的自定义的annotation,里面有两个值,来看这个annotation是怎么做的吧:

import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;


@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface ValueBind {
MyFieldType type();
String value();
}


public enum MyFieldType {
STRING, INT
}


够简单的吧!
首先这个annotation只能被标注在方法上
其次它含有两个值,一个是enum类型,一个是String类型

利用JAVA类反射来实现我们的Annotation
现在来看我们真正的实现(用类反射来实现)

import java.lang.reflect.Method;


public class StudentTest {


public static void main(String[] args) throws Exception {
Object c = Class.forName("Student").newInstance();
Method[] methodArray = c.getClass().getMethods();
for(Method m : methodArray) {
if(m.isAnnotationPresent(ValueBind.class)) {
ValueBind vb = m.getAnnotation(ValueBind.class);
String type = String.valueOf(vb.type());
String value = vb.value();
if("INT".equals(type)) {
m.invoke(c, new Integer[]{new Integer(value)});
}else
m.invoke(c, new String[]{value});
}
}

Student s = (Student)c;
System.out.println("Student's name is:" + s.getName() + ", age is " + s.getAge() + " , studentId is " + s.getStudentId());
}

}

运行完毕后显示:
Student's name is:kk, age is 24 , studentId is 001

此文从CSDN一大牛转载而来,原文链接地址:[url]http://blog.csdn.net/lifetragedy/article/details/7394910[/url]
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值