当前位置:   article > 正文

Spring Boot如何自定义注解?

Spring Boot如何自定义注解?

1.什么是注解

注解(Annotation),也叫元数据。一种代码级别的说明。它是JDK1.5及以后版本引入的一个特性,与类、接口、枚举是在同一个层次。它可以声明在包、类、字段、方法、局部变量、方法参数等的前面,用来对这些元素进行说明,注释。

元注解

有一些注解可以修饰其他注解,这些注解就称为元注解(meta annotation)。Java标准库已经定义了一些元注解,我们只需要使用元注解,通常不需要自己去编写元注解。

@Target

最常用的元注解是@Target。使用@Target可以定义Annotation能够被应用于源码的哪些位置:

  • 类或接口:ElementType.TYPE
  • 字段:ElementType.FIELD
  • 方法:ElementType.METHOD
  • 构造方法:ElementType.CONSTRUCTOR
  • 方法参数:ElementType.PARAMETER

例如,定义注解@Report可用在方法上,我们必须添加一个@Target(ElementType.METHOD)

  1. @Target(ElementType.METHOD)
  2. public @interface Report {
  3. int type() default 0;
  4. String level() default "info";
  5. String value() default "";
  6. }

定义注解@Report可用在方法或字段上,可以把@Target注解参数变为数组{ ElementType.METHOD, ElementType.FIELD }

  1. @Target({
  2. ElementType.METHOD,
  3. ElementType.FIELD
  4. })
  5. public @interface Report {
  6. ...
  7. }

实际上@Target定义的valueElementType[]数组,只有一个元素时,可以省略数组的写法。

@Retention

另一个重要的元注解@Retention定义了Annotation的生命周期:

  • 仅编译期:RetentionPolicy.SOURCE
  • 仅class文件:RetentionPolicy.CLASS
  • 运行期:RetentionPolicy.RUNTIME

如果@Retention不存在,则该Annotation默认为CLASS。因为通常我们自定义的Annotation都是RUNTIME,所以,务必要加上@Retention(RetentionPolicy.RUNTIME)这个元注解:

  1. @Retention(RetentionPolicy.RUNTIME)
  2. public @interface Report {
  3. int type() default 0;
  4. String level() default "info";
  5. String value() default "";
  6. }
@Repeatable

使用@Repeatable这个元注解可以定义Annotation是否可重复。这个注解应用不是特别广泛。

  1. @Repeatable(Reports.class)
  2. @Target(ElementType.TYPE)
  3. public @interface Report {
  4. int type() default 0;
  5. String level() default "info";
  6. String value() default "";
  7. }
  8. @Target(ElementType.TYPE)
  9. public @interface Reports {
  10. Report[] value();
  11. }

经过@Repeatable修饰后,在某个类型声明处,就可以添加多个@Report注解:

  1. @Report(type=1, level="debug")
  2. @Report(type=2, level="warning")
  3. public class Hello {
  4. }
@Inherited

使用@Inherited定义子类是否可继承父类定义的Annotation@Inherited仅针对@Target(ElementType.TYPE)类型的annotation有效,并且仅针对class的继承,对interface的继承无效:

  1. @Inherited
  2. @Target(ElementType.TYPE)
  3. public @interface Report {
  4. int type() default 0;
  5. String level() default "info";
  6. String value() default "";
  7. }

在使用的时候,如果一个类用到了@Report

  1. @Report(type=1)
  2. public class Person {
  3. }

则它的子类默认也定义了该注解:

  1. public class Student extends Person {
  2. }

2.代码工程

实验目的

实现统计方法执行时间的注解

pom.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>springboot-demo</artifactId>
  7. <groupId>com.et</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>annotations</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-web</artifactId>
  20. </dependency>
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-autoconfigure</artifactId>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-test</artifactId>
  28. <scope>test</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.aspectj</groupId>
  36. <artifactId>aspectjweaver</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.assertj</groupId>
  40. <artifactId>assertj-core</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.aspectj</groupId>
  44. <artifactId>aspectjrt</artifactId>
  45. </dependency>
  46. <!-- fastjson -->
  47. <dependency>
  48. <groupId>com.alibaba</groupId>
  49. <artifactId>fastjson</artifactId>
  50. <version>1.2.21</version>
  51. </dependency>
  52. </dependencies>
  53. </project>

controller

使用自定义注解@RequestTime

  1. package com.et.annotation.controller;
  2. import com.et.annotation.RequestTime;
  3. import org.springframework.web.bind.annotation.RequestMapping;
  4. import org.springframework.web.bind.annotation.RestController;
  5. import java.util.HashMap;
  6. import java.util.Map;
  7. @RestController
  8. public class HelloWorldController {
  9. @RequestMapping("/hello")
  10. @RequestTime
  11. public Map<String, Object> showHelloWorld(){
  12. Map<String, Object> map = new HashMap<>();
  13. map.put("msg", "HelloWorld");
  14. return map;
  15. }
  16. }

custom annotation

自定义@RequestTime注解

  1. package com.et.annotation;
  2. import java.lang.annotation.*;
  3. /**
  4. * computa the excute time for the method
  5. */
  6. @Target({ElementType.METHOD})
  7. @Retention(RetentionPolicy.RUNTIME)
  8. @Inherited
  9. public @interface RequestTime {
  10. }

具体的拦截逻辑类

  1. package com.et.annotation;
  2. import com.et.annotation.util.AspectUtil;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.aspectj.lang.ProceedingJoinPoint;
  5. import org.aspectj.lang.annotation.Around;
  6. import org.aspectj.lang.annotation.Aspect;
  7. import org.aspectj.lang.annotation.Pointcut;
  8. import org.springframework.stereotype.Component;
  9. import java.lang.reflect.Method;
  10. @Slf4j
  11. @Aspect
  12. @Component
  13. public class RequestTimeAspect {
  14. @Pointcut(value = "@annotation(com.et.annotation.RequestTime)")
  15. public void pointcut() {
  16. }
  17. @Around("pointcut()")
  18. public Object handle(ProceedingJoinPoint point) throws Throwable {
  19. Method currentMethod = AspectUtil.getMethod(point);
  20. long starttime = System.currentTimeMillis();
  21. Object result = point.proceed();
  22. long endtime = System.currentTimeMillis();
  23. long requesttime =endtime-starttime;
  24. //if(requesttime>1000){
  25. log.info(AspectUtil.getClassName(point)+"."+currentMethod.getName()+"execute time:"+requesttime+" ms");
  26. //}
  27. return result;
  28. }
  29. }

以上只是一些关键代码,所有代码请参见下面代码仓库

代码仓库

3.测试

  1. 启动Spring Boot应用程序
  2. 访问http://127.0.0.1:8088/hello
  3. 控制台输出 日志
2024-08-10 19:30:43.670 INFO 3343 --- [nio-8088-exec-1] com.et.annotation.RequestTimeAspect : com_et_annotation_controller_HelloWorldController.showHelloWorldexecute time:41 ms

4.引用

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号