java 自定义Annotation注解

news/2024/11/30 2:40:36/

 

目录

1.声明注解

 注解声明为@interface(注:这与interface接口没有任何关系)

   内部定义成员通常用value表示

  使用    

  可以指定成员的默认值,使用default定义

介绍

2.JDK中的元注解

@Retention:

@Target:

@Documented:

@Inherited:

3.JDK8中注解的新特性

可重复注解

测试重复定义注解

类型注解

4.使用注解

5.示例-反射获取注解

先定义一个注解:

通过反射获取注解

6.示例使用场景

7.通过反射获取类中所有加了注解的方法、变量-示例



1.声明注解

 注解声明为@interface(注:这与interface接口没有任何关系)

public @interface MyAnnotation {
} 

   内部定义成员通常用value表示
 

public @interface MyAnnotation {String value();
} 

  使用    

@MyAnnotation(value = "Hello")public int add(int a, int b){return a + b;
} 

  可以指定成员的默认值,使用default定义

public @interface MyAnnotation {String value() default "Hello";
} 

介绍

  1. 如果自定义注解没有成员,表明是一个标识;如果注解有成员,在使用注解时必须指定成员的值。
  2. 定义新的注解类型使用@interface
  3. 自定义注解自动继承java.lang.annotation.Annotation接口
  4. 注解的成员变量类型可以是8中基本数据类型、String类型、Class类型、Enum类型、Annotation类型或以上类型的数组。
  5. 自定义注解必须配上注解的信息处理流程(使用反射)才有意义

2.JDK中的元注解

元注解用于修饰其他Annotation的定义,它是对现有的注解进行解释说明的注解。

4个元注解:@Retention、@Target、@Documented、@Inherited

@Retention:

表示需要在什么级别保存该注释信息,用于描述注解的生命周期。

进入@Retention注解源码看到它只有一个RetentionPolicy类型的成员。

       到,他是一个枚举类型,包括三个值(SOURCE、CLASS、RUNTIME)。

  1. RetentionPolicy.SOURCE:在源文件中有效,编译器直接丢弃这种策略的注释。
  1. RetentionPolicy.CLASS:在class文件中有效,当运行java程序时,JVM不会保留注释。
  2. RetentionPolicy.RUNTIME:在运行时有效,当运行java程序时,JVM会保留注释。程序可以通过反射获取该注释。

@Target:

用于描述注解的适用范围(即可以用在什么地方)

进入@Target注解源码看到它只有一个ElementType数组类型的成员。

public enum ElementType {
	TYPE,
	FIELD,
	METHOD,
	PARAMETER,
	CONSTRUCTOR,
	LOCAL_VARIABLE,
	ANNOTATION_TYPE,
	PACKAGE,
	TYPE_PARAMETER,
	TYPE_USE
} 

@Documented:

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

@Inherited:

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

3.JDK8中注解的新特性

可重复注解

如果我们需要定义重复注解,就必须给它定义容器类,还要使用 @Repeatable 注解修饰。


@Repeatable(MyAnnotations.class)
@Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE})
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {String value() default "hello";}/*** 容器类*/
@Target({TYPE, FIELD, METHOD, PARAMETER, CONSTRUCTOR, LOCAL_VARIABLE})
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotations {RepetitionAnnotation[] value();}

测试重复定义注解

public class AnnotationTest {/*** @Description 获取指定两个数之和* @param a* @param b* @return 两数之和*/@MyAnnotation(value = "Hello")@MyAnnotation(value = "你好")public int add(int a, int b){return a + b;}
}

类型注解

  •         向 @Target 中添加两种类型 TYPE_PARAMETER和TYPE_USE

4.使用注解

@Target(value= {ElementType.TYPE,ElementType.METHOD})
@Documented
@Retention(value= RetentionPolicy.RUNTIME)
@Inherited
@interface myAnnotation{String name() default "9999";
}
@myAnnotation(name="sssss")
static class as9{@myAnnotation(name="ss9")public  void ss(){}public void cc() throws NoSuchMethodException {as9.class.getAnnotation(myAnnotation.class).name();}
}
@myAnnotation()
static class as6{
}@Test
public void t17() throws Exception {System.out.println(as9.class.getAnnotation(myAnnotation.class).name());//sssssSystem.out.println(as6.class.getAnnotation(myAnnotation.class).name());//sssssSystem.out.println(as9.class.getMethod("ss",null).getAnnotation(myAnnotation.class).name());//获取方法上的注解值
}

5.示例-反射获取注解

先定义一个注解:

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyField {String description();int length();
}

通过反射获取注解

public class MyFieldTest {//使用我们的自定义注解@MyField(description = "用户名", length = 12)private String username;@Testpublic void testMyField(){// 获取类模板Class c = MyFieldTest.class;// 获取所有字段for(Field f : c.getDeclaredFields()){// 判断这个字段是否有MyField注解if(f.isAnnotationPresent(MyField.class)){MyField annotation = f.getAnnotation(MyField.class);System.out.println("字段:[" + f.getName() + "], 描述:[" + annotation.description() + "], 长度:[" + annotation.length() +"]");}}}
}

6.示例使用场景

  • 自定义注解+拦截器 实现登录校验
  • 自定义注解+AOP 实现日志打印

7.通过反射获取类中所有加了注解的方法、变量-示例

@Target(value= {ElementType.TYPE,ElementType.METHOD,ElementType.FIELD})
@Documented
@Retention(value= RetentionPolicy.RUNTIME)
@Inherited
@interface myAnnotation{String name() default "9999";
}
@myAnnotation(name="sssss")
static class as9{@myAnnotation(name="ss9")public  void ss(){}@myAnnotation(name="ss92")public  void ss2(){}@myAnnotation(name="ss929")private String cc;
}
@myAnnotation()
static class as6{
}@Test
public void t17() throws Exception {System.out.println(as9.class.getAnnotation(myAnnotation.class).name());//sssssSystem.out.println(as6.class.getAnnotation(myAnnotation.class).name());//sssssSystem.out.println(as9.class.getMethod("ss",null).getAnnotation(myAnnotation.class).name());Class c = as9.class;for (Field f:c.getDeclaredFields()){//反射获取所有字段if(f.isAnnotationPresent(myAnnotation.class)){myAnnotation my = f.getAnnotation(myAnnotation.class);System.out.println("字段:[" + f.getName() + "], 值:[" + my.name() + "]");}}for (Method f:c.getDeclaredMethods()){//获取所有方法if(f.isAnnotationPresent(myAnnotation.class)){myAnnotation my = f.getAnnotation(myAnnotation.class);System.out.println("方法名:[" + f.getName() + "], 值:[" + my.name() + "]");}}}

ok

持续更新


http://www.ppmy.cn/news/56214.html

相关文章

jQuery入门 -- 概述和基本使用

1. jQuery概述 jQuery的概念:jQuery是一个快速、简洁的JavaScript库,其设计的宗旨是“write Less,Do More”,即提倡写更少的代码,做更多的事情。 j就是JavaScript; Query查询;意思就是查询js,把js中的DOM…

【文件系统】

目录 1 inode 2 软链接 3 硬链接 1 inode 当我们创建一个文件时,用带上 -i 选项可以查看文件的inode: 其中第一个选项就是文件的inode,除此之外另外几列表示的是: 模式 硬链接数 文件所有者 所属组 大小 最后修改时间文件名 ls -l读取存储在磁盘上的文…

【OpenFOAM】-算例解析合集

【OpenFOAM】-算例解析合集 OlaFlowinterFoampimpleFoamOlaFlow 【OpenFOAM】-olaFlow-算例1- baseWaveFlume 【OpenFOAM】-olaFlow-算例2- breakwater 【OpenFOAM】-olaFlow-算例3- currentWaveFlume 【OpenFOAM】-olaFlow-算例4- irreg45degTank 【OpenFOAM】-olaFlow-算例5…

Java Memory Model

JMM(Java Memory Model)是什么?: JMM是一份规范,它规定了 JVM 在多线程并发访问共享内存中的数据时,线程的行为规范和模型。 JMM 规定了所有的变量都存储在主内存中,每个线程都有自己的工作内存…

尚融宝25-投资列表展示以及实现充值功能

目录 一、展示投资列表 (一)需求 (二)后端 (三)前端 二、充值功能 (一)需求 1、需求描述 2、流程 (二)充值 1、后端 2、前端 (三&…

数据结构学习记录——判断是否为同一颗二叉搜索树(题意理解、求解思路、程序搭建框架、具体函数的实现)

目录 题意理解 问题 描述 输入样例 输出样例 求解思路 建两棵二叉树 不建树 建一棵树 搜索树表示 程序框架搭建 如何建搜索树 如何判别 方法 查找函数 判断函数 其他函数 题意理解 给定一个插入序列就可以唯一确定一颗二叉搜索树。 但是,一颗给定…

82. Python split方法-分割字符串

82. split方法-分割字符串 文章目录 82. split方法-分割字符串1. 什么是split( )函数2. split( )方法的语法格式如下:3. 实操练习4. 列表索引取值知识回顾5. 用split方法分解网址提取有效信息6. 从地址信息中拆分省、市、区信息 1. 什么是split( )函数 split[splɪ…

vue相关知识导学

学习资料 Vue 相关源码地址: vue2.0 GitHub - vuejs/vue: This is the repo for Vue 2. For Vue 3, go to https://github.com/vuejs/coreVue3.0 GitHub - vuejs/core: 🖖 Vue.js is a progressive, incrementally-adoptable JavaScri…