建立第一个注解

package com.tmser.annotation;
public @interface TestA {
//这里定义了一个空的注解,它能干什么呢。我也不知道,但他能用。
}
在下面这个程序中使用它:
package com.tmser.annotation;
import java.util.HashMap;
import java.util.Map;
@TestA  //使用了类注解
public class UserAnnotation {
@TestA
//使用了类成员注解
private Integer age;
@TestA
//使用了构造方法注解
public
UserAnnotation(){
}
@TestA
//使用了类方法注解
public
void a(){
@TestA
//使用了局部变量注解
Map m = new
HashMap(0);
}
public
void b(@TestA Integer a){ //使用了方法参数注解
}
}
编译没有报错,ok,一个注解实验完成。这个注解也太简单了吧,好像什么信息也不能传递。别急下面就来一步步完善它,也该四位元注解依次开始上场了。
四个元注解分别是:@Target,@Retention,@Documented,@Inherited
,再次强调下元注解是java API提供,是专门用来定义注解的注解,其作用分别如下:
@Target 表示该注解用于什么地方,可能的值在枚举类 ElemenetType
中,包括:
ElemenetType.CONSTRUCTOR----------------------------构造器声明
ElemenetType.FIELD --------------------------------------域声明(包括
enum 实例)
ElemenetType.LOCAL_VARIABLE-------------------------
局部变量声明
ElemenetType.METHOD
----------------------------------方法声明
ElemenetType.PACKAGE ---------------------------------
包声明
ElemenetType.PARAMETER
------------------------------参数声明
ElemenetType.TYPE---------------------------------------
类,接口(包括注解类型)或enum声明
@Retention 表示在什么级别保存该注解信息。可选的参数值在枚举类型
RetentionPolicy 中,包括:
RetentionPolicy.SOURCE
---------------------------------注解将被编译器丢弃
RetentionPolicy.CLASS
-----------------------------------注解在class文件中可用,但会被VM丢弃
RetentionPolicy.RUNTIME
VM-------将在运行期也保留注释,因此可以通过反射机制读取注解的信息。
@Documented 将此注解包含在 javadoc 中
,它代表着此注解会被javadoc工具提取成文档。在doc文档中的内容会因为此注解的信息内容不同而不同。相当与@see,@param
等。
@Inherited 允许子类继承父类中的注解。
学习最忌好高骛远,最重要的还是动手实践,我们就一个一个来实验。
第一个:@Target,动手在前面我们编写的注解上加上元注解。
package com.tmser.annotation;
import
java.lang.annotation.ElementType;
import
java.lang.annotation.Target;
@Target(ElementType.PACKAGE)
//与前面定义的注解不同的地方,这里使用了元注解Target
public @interface TestA {
}
ctrl+ s
保存,今天电脑比较给力,我们的测试类那边立马出现了一堆错误,除了类注解。我想到这,聪明的你立刻明白了这个元注解的意义了。是不是想当然的偷起懒来了。?难道还有意外?细心的朋友应该发现了,我们的测试类少了一个属性没用,就是ElemenetType.PACKAGE。在我们的注解加上这个属性的元注解后,我们测试程序的元注解全部阵亡,不对,还有一个没加呢,好加上。package
包,想当然是加载 package 前面。即
@TestA package
com.tmser.annotation;
什么也报错。这就搞不明白了,不加在这加哪去呢。我也不知道了,不过这是编译错误,我们的eclipse
将错误给我们指出了,就是Package annotations must be
in file package-info.java ,e 文虽然不好,但这个简单的还是难不倒几个人的,package 注解必须定义在
package-info.java 中。package-info
又是什么东西,好了为节省你们的时间帮你百度好了(在另一篇我的另一篇博文里面,自己找吧,咔咔)。ok,到此 target
元注解就全部完成了。
第二个元注解: @Retention
参数 RetentionPolicy。有了前面的经验这个注解理解起来就简单多了,并且幸运的是这个注解还没有特殊的属性值。
简单演示下如何使用:
package
com.tmser.annotation;
import
java.lang.annotation.ElementType;
import
java.lang.annotation.Target;
@Target(ElementType.PACKAGE)
@Retention(RetentionPolicy.RUNTIME)
public @interface
TestA {
}
第三和第四个元注解就不再举例了。比较简单,也没有值,相信看过上面的解释也就清楚了。下面我们还是继续来深入的探讨下注解的使用。上面的例子都非常简单,注解连属性都没有。ok,下面我们就来定义一个有属性的注解,并在例子程序中获取都注解中定义的值。
开始之前将下定义属性的规则:
@interface用来声明一个注解,其中的每一个方法实际上是声明了一个配置参数。方法的名称就是参数的名称,返回值类型就是参数的类型(返回值类型只能是基本类型、Class、String、enum)。可以通过default来声明参数的默认值。
代码:
@Target({TYPE,METHOD,FIELD,CONSTRUCTOR})
@Retention(RetentionPolicy.RUNTIME)
public @interface
TestA {
String
name();
int id() default
0;
Class
gid();
}
下面改下我们的测试类:
package
com.tmser.annotation;
import
java.util.HashMap;
import
java.util.Map;
@TestA(name="type",gid=Long.class) //类成员注解
public class
UserAnnotation {
@TestA(name="param",id=1,gid=Long.class)
//类成员注解
private Integer
age;
@TestA
(name="construct",id=2,gid=Long.class)//构造方法注解
public
UserAnnotation(){
}
@TestA(name="public
method",id=3,gid=Long.class) //类方法注解
public void
a(){
Map m = new
HashMap(0);
}
@TestA(name="protected method",id=4,gid=Long.class)
//类方法注解
protected void
b(){
Map m = new
HashMap(0);
}
@TestA(name="private method",id=5,gid=Long.class)
//类方法注解
private void
c(){
Map m = new
HashMap(0);
}
public void
b(Integer a){
}
}
下面到了最重要的一步了,就是如何读取我们在类中定义的注解。只要读取出来了使用的话就简单了。
package
com.tmser.annotation;
import
java.lang.annotation.Annotation;
import
java.lang.reflect.Constructor;
import
java.lang.reflect.Method;
public class
ParseAnnotation {
public static void
parseTypeAnnotation() throws ClassNotFoundException {
Class
clazz =
Class.forName("com.tmser.annotation.UserAnnotation");
Annotation[] annotations = clazz.getAnnotations();
for
(Annotation annotation : annotations) {
TestA
testA = (TestA)annotation;
System.out.println("id=
""+testA.id()+""; name= ""+testA.name()+""; gid =
"+testA.gid());
}
}
public static void
parseMethodAnnotation(){
Method[] methods =
UserAnnotation.class.getDeclaredMethods();
for
(Method method : methods) {
boolean hasAnnotation =
method.isAnnotationPresent(TestA.class);
if (hasAnnotation) {
TestA annotation =
method.getAnnotation(TestA.class);
System.out.println("method = " +
method.getName()
+ " ; id = " +
annotation.id() + " ; description = "
+ annotation.name() + "; gid=
"+annotation.gid());
}
}
}
public static void
parseConstructAnnotation(){
Constructor[]
constructors = UserAnnotation.class.getConstructors();
for
(Constructor constructor : constructors)
{
boolean hasAnnotation =
constructor.isAnnotationPresent(TestA.class);
if (hasAnnotation) {
TestA annotation =(TestA)
constructor.getAnnotation(TestA.class);
System.out.println("constructor = " +
constructor.getName()
+ " ; id = " +
annotation.id() + " ; description = "
+ annotation.name() + "; gid=
"+annotation.gid());
}
}
}
public static void
main(String[] args) throws ClassNotFoundException {
parseTypeAnnotation();
parseMethodAnnotation();
parseConstructAnnotation();
}
}
先别说话,运行:
id= "0"; name= "type"; gid = class
java.lang.Long
method = c ; id = 5 ; description = private method;
gid= class java.lang.Long
method = a ; id = 3 ; description = public method;
gid= class java.lang.Long
method = b ; id = 4 ; description = protected method;
gid= class java.lang.Long
constructor = com.tmser.annotation.UserAnnotation ; id
= 2 ; description = construct; gid= class
java.lang.Long

看到了吧,我们定义的注解都完整的输出了,你要使用哪个,直接拿去用就好了。

为了不让这篇文章打开太慢,我省略了类属性注解,及参数注解的解析。其实都大同小异。

另外,我也没有举使用例子。因为我认为好的教程是讲的详细的同时,还会留有扩展。如果我全部写出来,而你只是学习的话,那基本不会自己去动脑了,而是复制粘贴运行一遍完事。

最后提醒下:

1. 要用好注解,必须熟悉java

的反射机制,从上面的例子可以看出,注解的解析完全依赖于反射。

2.

不要滥用注解。平常我们编程过程很少接触和使用注解,只有做设计,且不想让设计有过多的配置时