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

java注解(annotation)的用法

阅读更多

 

 

转自:http://blog.csdn.net/x_yp/article/details/6229516

 

 

自定义注解:

 

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Target({ElementType.FIELD,ElementType.METHOD,ElementType.PARAMETER})   //用于字段,方法,参数
@Retention(RetentionPolicy.RUNTIME) //在运行时加载到Annotation到JVM中
public @interface Field_Method_Parameter_Annotation {
    Class<?> type() default void.class;  //定义一个具有默认值的Class型成员
    String describ();    //定义一个没有默认值的String成员
}

 

使用注解:

 

public class AnnotationTest {

	// 注释字段
	@Field_Method_Parameter_Annotation(describ = "字段编号", type = int.class)
	int id;

	// 注释字段
	@Field_Method_Parameter_Annotation(describ = "字段姓名", type = String.class)
	String name;

	public AnnotationTest() {
	}

	@Field_Method_Parameter_Annotation(describ = "获得编号", type = int.class)
	public int getId() {
		return id;
	}

	@Field_Method_Parameter_Annotation(describ = "设置编号")
	public void setId(
	// 注释参数
			@Field_Method_Parameter_Annotation(describ = "设置编号", type = int.class) int id) {
		this.id = id;
	}

	@Field_Method_Parameter_Annotation(describ = "获得姓名", type = String.class)
	public String getName() {
		return name;
	}

	@Field_Method_Parameter_Annotation(describ = "设置姓名")
	public void setName(
			@Field_Method_Parameter_Annotation(describ = "姓名", type = String.class) String name) {
		this.name = name;
	}

	@Field_Method_Parameter_Annotation(describ = "设置编号和姓名")
	public void setIdAndName(
			// 注释参数
			@Field_Method_Parameter_Annotation(describ = "设置编号", type = int.class) int id,
			@Field_Method_Parameter_Annotation(describ = "姓名", type = String.class) String name) {
		this.id = id;
		this.name = name;
	}

	@Field_Method_Parameter_Annotation(describ = "设置编号和姓名")
	public void setIdAndName2(
	// 注释参数 @Field_Method_Parameter_Annotation(describ = "设置编号", type =
	// int.class) int id,
			String name) {
		this.id = id;
		this.name = name;
	}
}

 

处理注解:

 

import java.lang.annotation.Annotation;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
public class Test {
	public static void main(String[] args) throws ClassNotFoundException {
	        System.out.println("********字段的Annotation*************");
	        Field[] declaredFields = AnnotationTest.class.getDeclaredFields();   //获得所有的字段
	        for(int i=0;i<declaredFields.length;i++){
	            Field field = declaredFields[i];
	            System.out.print("字段" + field.getName() + "的Annotation:");   //获得字段描述
	            //查看是否具有指定类型的注释:
	            if(field.isAnnotationPresent(Field_Method_Parameter_Annotation.class)){
	                Field_Method_Parameter_Annotation fa = field.getAnnotation(Field_Method_Parameter_Annotation.class);
	                System.out.print(" " + fa.describ());   //获得字段描述
	                System.out.println(" " + fa.type());    //获得字段类型
	            }
	        }
	        System.out.println("********方法的Annotation********");
	        Method [] methods = AnnotationTest.class.getDeclaredMethods();    //获得所有的方法
	        for(int i=0;i<methods.length;i++){
	            Method method = methods[i];
	            //查看是否指定注释:
	            System.out.println("方法" + method.getName() + "的Annotation:");
	            if(method.isAnnotationPresent(Field_Method_Parameter_Annotation.class)){
	                Field_Method_Parameter_Annotation ma = method.getAnnotation(Field_Method_Parameter_Annotation.class);
	                System.out.print("   " + ma.describ());   //获得方法描述
	                System.out.println("   " + ma.type());    //获得方法类型
	            }
	            System.out.println("方法" + method.getName() + "的参数的Annotation");
	            //获得所有参数注解
	            Annotation[][]parameterAnnotations = method.getParameterAnnotations();    
	            if (parameterAnnotations.length == 0) {
	            	System.out.println("方法没有参数");
	            }
	            for(int j = 0;j < parameterAnnotations.length;j++){
	                int length = parameterAnnotations[j].length; 
	                if(length==0){
	                    System.out.println("没有添加Annotation参数");
	                }else{
	                    for(int k=0;k<length;k++){
	                        //获得指定的注释:
	                        Field_Method_Parameter_Annotation pa = (Field_Method_Parameter_Annotation)parameterAnnotations[j][k];
	                        System.out.print(" " + pa.describ());   //获得参数描述
	                        System.out.println(" " + pa.type());    //获得参数类型
	                    }
	                }
	            }
	        }
	    }
	}

 

 

 

 

 

分享到:
评论

相关推荐

    java 注解annotation的使用以及反射如何获取注解

    Java注解(Annotation)是Java语言提供的一种元数据机制,用于向编译器或JVM提供额外的信息。这些信息可以用来验证代码、控制代码生成、配置应用等。注解是自Java 5版本引入的特性,它使得程序员可以在源代码中嵌入...

    Java 注解Annotation实例上手文档

    ### Java 注解Annotation实例上手文档 #### 一、引言与基础知识 Java注解(Annotation)自JDK 5.0引入以来,已经成为Java语言的重要特性之一,它为代码元数据提供了一种标准化的方式,使得编译器、工具和其他框架...

    java注解annotation.rar

    Java注解,也称为 Annotation,是Java编程语言中的一种元数据机制,用于向编译器、JVM(Java虚拟机)或工具提供有关代码的信息。这些信息可以用来进行编译时检查、运行时处理,或者作为配置信息。注解不是程序的一...

    Java自定义注解Annotation的使用

    ### Java自定义注解Annotation的使用 #### 1. 前言 自从JDK 1.5引入了注解这一特性以来,它已经成为Java开发中的一个重要组成部分。注解最初是为了推动EJB 3.0的普及和发展而设计的,其目的是减少配置文件的使用,...

    java教程之java注解annotation使用方法

    Java注解(Annotation)是Java语言中的一个重要特性,它允许程序员在源代码中嵌入元数据(metadata),这些元数据不会直接影响程序的执行,但可以被编译器或Java虚拟机(JVM)在编译时或运行时读取,从而实现特定的...

    Java Annotation注解技术

    Java Annotation注解技术是自Java SE 5.0版本引入的一种元编程机制,它允许程序员在源代码的各个层面(如类、方法、变量等)添加元数据,以供编译器、JVM或第三方工具在编译时或运行时进行处理。Annotation简化了...

    JAVA注解(Annotation).doc

    Java注解,也称为Annotation,是Java编程语言中的一种特性,用于向编译器、JVM或工具提供元数据。元数据是关于数据的数据,它提供了额外的信息,但不直接影响程序的执行。注解在代码中以`@注解名`的形式出现,主要...

    自定义注解annotation及用法

    在Java编程语言中,注解(Annotation)是一种元数据,它提供了向编译器、工具或运行时系统提供额外信息的方式。自定义注解允许开发者创建自己的标记来满足特定需求,比如代码生成、验证、持久化等。本文将深入探讨...

    Java注解(Annotation)全面解析:作用、应用与自定义实践

    本文将详细介绍Java注解的作用、应用场景以及如何自定义注解。 Java注解是一种强大的工具,它们为代码提供了额外的元数据,可以在编译时和运行时发挥多种作用。通过自定义注解,开发者可以创建灵活的框架和库,提高...

    Java Annotation注解.doc

    在实际开发中,Java注解被广泛用于Spring框架的依赖注入、JPA的实体映射、JSF的UI组件绑定等场景,极大地提高了代码的可维护性和灵活性。然而,对于更复杂的注解使用,如自定义注解生成XML映射文件,需要更深入的...

    Java 5 annotation 学习笔记

    Java 5引入的注解(Annotation)是一种元数据,它提供了在代码中嵌入信息的方式,这些信息可以被编译器、JVM或其他工具在编译时或运行时使用。注解可以用来简化代码,提高可维护性,并帮助工具进行静态分析。 1. ...

    java之Annotation及其应用

    Java注解(Annotation)是Java语言的一个重要特性,它为元数据提供了强大的支持。元数据是一种描述数据的数据,可以提供有关代码的附加信息,而这些信息并不直接影响代码的执行。在Java中,注解用于向编译器、JVM或...

    java 通过反射获取类上注解,方法上注解,注解里的值及方法参数

    对于有成员值的注解,可以使用`Annotation`对象的`annotationType().getDeclaredMethods()`来获取成员方法,然后调用这些方法来获取值。例如,对于注解`@MyAnnotation(value="test")`,可以这样获取值: ```java ...

    Java注解的使用例子

    Java注解(Annotation)是Java语言的一个重要特性,它为元数据提供了一种结构化的方式。元数据是在程序代码中包含的关于程序本身的信息,但这些信息并不直接影响程序的执行。注解允许开发者向编译器、JVM或工具提供...

    Java注解实现方式

    Java注解是Java编程语言中的一个重要特性,它允许程序员在代码中嵌入元数据,这些元数据可以被编译器或运行时环境用来执行各种任务,例如代码...了解和熟练掌握Java注解的使用,对于提升Java编程的效率和质量至关重要。

    java注解深入理解

    Java注解是Java编程语言中的一个重要特性,它提供了一种元数据的方式,允许程序员在代码中插入额外的信息,这些信息可以被编译器或者运行时环境用来执行特定的任务。注解在现代Java开发中扮演了不可或缺的角色,尤其...

Global site tag (gtag.js) - Google Analytics