美文网首页
自定义注解及切面

自定义注解及切面

作者: 乡村码农 | 来源:发表于2022-10-13 19:36 被阅读0次

1、自定义注解四基本:

只要理解和记住jdk内置的四个注解即可 (@Target,@Retention,@Documented,@Inherited)

  • (1)@Target:注解的使用范围 (ElementType)
    packages、types(类、接口、枚举、注解类)、类成员(方法、构造方法、成员变量、枚举值)
  • (2)@Retention:注解的保留时间范围 (RetentionPolicy)
    SOURCE:源文件保留(如@Override保留在源文件,编译后注解消失)
    CLASS:编译时保留(如lombok生成get/set)
    RUNTIME:运行时保留(如切面记录日志,或验证参数信息等)
  • (3)@Documented:保留注解信息
  • (4)@Inherited:子类注解自动继承该注解
    例子:
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface TestAnnotation {
    public String param() default "";
}

2、切面三要素:

  • (1)连接点 JoinPoint ,spring中允许通知的地方,也就是允许切入的地方,如方法执行前、执行后、异常抛出后,在连接点中可以进行切入
  • (2)切入点 Pointcut,实际选择的连接点进行通知,比如有100个连接点,你选了5个进行通知,这5个就是切入点
  • (3)切面 Aspect 就是切入点和通知的结合,也就是在哪切入(哪个类),通知的类型是在(类或方法)之前还是之后,befor,after,around

Spring AOP支持使用以下AspectJ切点标识符(PCD),用于切点表达式:
execution: 用于匹配方法执行连接点。 这是使用Spring AOP时使用的主要切点标识符。 可以匹配到方法级别 ,细粒度
within: 只能匹配类这级,只能指定类, 类下面的某个具体的方法无法指定, 粗粒度
this: 匹配实现了某个接口:this(com.xyz.service.AccountService)
target: 限制匹配到连接点(使用Spring AOP时方法的执行),其中目标对象(正在代理的应用程序对象)是给定类型的实例。
args: 限制与连接点的匹配(使用Spring AOP时方法的执行),其中变量是给定类型的实例。 AOP) where the arguments are instances of the given types.
@target: 限制与连接点的匹配(使用Spring AOP时方法的执行),其中执行对象的类具有给定类型的注解。
@args: 限制匹配连接点(使用Spring AOP时方法的执行),其中传递的实际参数的运行时类型具有给定类型的注解。
@within: 限制与具有给定注解的类型中的连接点匹配(使用Spring AOP时在具有给定注解的类型中声明的方法的执行)。
@annotation:限制匹配连接点(在Spring AOP中执行的方法具有给定的注解)

3、自定义注解

//  TestAnnotation.java
package com.xxx;

import java.lang.annotation.*;

// 作用在方法上
@Target(ElementType.METHOD)
// 运行时生效
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface TestAnnotation {
    public String param() default "";
}

4、切面

  • (1)自定义注解
package com.xxx;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.annotation.Order;
import org.springframework.stereotype.Component;

import javax.servlet.http.HttpServletRequest;


// 定义切面
@Aspect
// 交给spring管理
@Component
// 该切面的优先顺序,越小优先级越高
@Order(value = 1)
public class TestAspect {

    @Autowired
    private HttpServletRequest request;

    // 切点方式
    @Pointcut("@annotation(com.puyitou.fundmanager.hedge.system.aspect.TestAnnotation)")
    private void testAspectPoincut(){}

    @Before("testAspectPoincut()")
    public void before(JoinPoint joinPoint){
        System.out.println("执行了before。。。testAspectPoincut:" );
    }
    // 连接点方式
    /*
    @Before("within(com.puyitou.fundmanager.hedge.controller.FeeSettleController)")
    public void before(JoinPoint joinPoint){
        System.out.println("执行了before。。。testAnnotation:" );
    }

    // 方法正常退出时执行  通知类型是AfterReturning,切入点是在within范围内有operationLog注解的方法
    @AfterReturning("within(com.puyitou..*) && @annotation(testAnnotation)")
    public void afterReturning(JoinPoint joinPoint,TestAnnotation testAnnotation){
        System.out.println("执行了afterReturning。。。testAnnotation:" + testAnnotation.param());
    }

    @AfterThrowing("within(com.puyitou..*) && @annotation(testAnnotation)")
    public void afterThrowing(JoinPoint joinPoint,TestAnnotation testAnnotation){
        System.out.println("执行了afterThrowing... testAnnotation:" + testAnnotation.param());
    }
    */
}

  • (2)系统原本的注解


    /**
     * 定义一个切点:所有被 GetMapping 注解修饰的方法都会被织入 advice
     */
    @Pointcut("@annotation(org.springframework.web.bind.annotation.GetMapping)")
    private void logAdvicePointcut(){}

    /**
     * 表示 logAdvice 将在目标方法执行前执行
     */
    @Before("logAdvicePointcut()")
    public void logAdvice(){
        //这里只是一个示例,你可以写任何处理逻辑
        System.out.println("切面 @Before 执行了");
    }
    

相关文章

  • Spring boot 使用Aop

    AOP及自定义注解使用Spring boot 使用AopJava自定义注解 Aop即为切面编程,通常以下几个场景回...

  • kotlin-spring-data-jpa 开发脚手架

    1. 基本常用类: 注解 自定义kotlin注解自定义日志切面注解@Log,获取当前用户注解@CurrentUse...

  • 自定义注解及切面

    1、自定义注解四基本: 只要理解和记住jdk内置的四个注解即可 (@Target,@Retention,@Docu...

  • AspectJ注解

    aop注解@Component 加入自定义通知类@Service 加入服务层@Aspect 声明切面,修饰切面...

  • [Guice] 7 Guice Aop

    Guice中的Aop,通常是结合自定义注解实现。 以实现一个日志打印的切面注解为例:1、自定义注解 2、在modu...

  • Spring Aop实战应用

    一 场景 记录操作日志 二 代码实现 1 切面类 2 配置监控的自定义注解 3 为要增加日志的方法添加自定义注解 ...

  • Android之AOP架构<第三篇>:网络判断

    直接贴代码 [第一步] 网络判断切面 在名字叫CheckNet的注解上埋下切点。 [自定义注解] [注解的使用] ...

  • springboot项目注解限制接口访问次数

    1.导包 2.定义注解 3.自定义aop切面 4.接口添加注解 5.测试接口

  • 注解学习笔记

    什么是注解注解分类注解作用分类 元注解 Java内置注解 自定义注解自定义注解实现及使用编译时注解注解处理器注解处...

  • 2021-06-14_SpringAop手动定义切面及切点学习笔

    20210614_SpringAop手动定义切面及切点学习笔记 1概述 本节主要学习下自定义切面及切点,完成spr...

网友评论

      本文标题:自定义注解及切面

      本文链接:https://www.haomeiwen.com/subject/tknfzrtx.html