springBoot(4) aop

1. 切面与切点

  • 定义切面

@Aspect

@Configurationpublic class AopConfiguration {

}

  • 切面内定义切点

@Pointcut("execution(* com.test.service.*.*(..))")

public void executeService(){

}

  • 切面内定义通知

@Pointcut("within(com.cjm.model.Person)")

public void before(){

doSomething...

}

2. 切点表达式

切入点的方法不用任何代码,返回值是void,最重要的是执行的条件的表达式:

1execution:用于匹配子表达式。

    //匹配com.cjm.model包及其子包中所有类中的所有方法,返回类型任意,方法参数任意

    @Pointcut("execution(* com.cjm.model..*.*(..))")

public void before(){}

 

2within:用于匹配连接点所在的Java类或者包。

    //匹配Person类中的所有方法

    @Pointcut("within(com.cjm.model.Person)")

    public void before(){}

 

    //匹配com.cjm包及其子包中所有类中的所有方法

@Pointcut("within(com.cjm..*)")

    public void before(){}

 

3this:用于向通知方法中传入代理对象的引用。

     @Before("before() && this(proxy)")

     public void beforeAdvide(JoinPoint point, Object proxy){

         //处理逻辑

     }

 

4target:用于向通知方法中传入目标对象的引用。

     @Before("before() && target(target)

     public void beforeAdvide(JoinPoint point, Object proxy){

         //处理逻辑

     }

 

 5args:用于将参数传入到通知方法中。

     @Before("before() && args(age,username)")

     public void beforeAdvide(JoinPoint point, int age, String username){

         //处理逻辑

     }

 

 6@within :用于匹配在类一级使用了参数确定的注解的类,其所有方法都将被匹配。

@Pointcut("@within(com.cjm.annotation.AdviceAnnotation)") - 所有被@AdviceAnnotation标注的类都将匹配

      public void before(){}

 

 7@target @within的功能类似,但必须要指定注解接口的保留策略为RUNTIME

      @Pointcut("@target(com.cjm.annotation.AdviceAnnotation)")

      public void before(){}

 

 

8@args :传入连接点的对象对应的Java类必须被@args指定的Annotation注解标注。

      @Before("@args(com.cjm.annotation.AdviceAnnotation)")

      public void beforeAdvide(JoinPoint point){

            //处理逻辑

      }

9@annotation :匹配连接点被它参数指定的Annotation注解的方法。也就是说,所有被指定注解标注的方法都将匹配。

       @Pointcut("@annotation(com.cjm.annotation.AdviceAnnotation)")

       public void before(){}

 

10bean:通过受管Bean的名字来限定连接点所在的Bean。该关键词是Spring2.5新增的。

        @Pointcut("bean(person)")

        public void before(){}

 

3. 各种通知

1. 前置通知

@Before("executeService()")

public void doBeforeAdvice(JoinPoint joinPoint){}

 

2. 后置返回通知

@AfterReturning(value = "execution(* com.zkn.learnspringboot.web.controller..*.*(..))",returning = "keys")  

public void doAfterReturningAdvice1(JoinPoint joinPoint,Object keys){}

这里需要注意的是:

  如果参数中的第一个参数为JoinPoint,则第二个参数为返回值的信息

  如果参数中的第一个参数不为JoinPoint,则第一个参数为returning中对应的参数

returning 限定了只有目标方法返回值与通知方法相应参数类型时才能执行后置返回通知,否则不执行,对于returning对应的通知方法参数为Object类型将匹配任何目标返回值

@AfterReturning(value = "execution(* com.zkn.learnspringboot.web.controller..*.*(..))",returning = "keys",argNames = "keys")

 

3. 后置异常通知

@AfterThrowing(value = "executeService()",throwing = "exception")

public void doAfterThrowingAdvice(JoinPoint joinPoint,Throwable exception){}

 

定义一个名字,该名字用于匹配通知实现方法的一个参数名,当目标方法抛出异常返回后,将把目标方法抛出的异常传给通知方法;

throwing 限定了只有目标方法抛出的异常与通知方法相应参数异常类型时才能执行后置异常通知,否则不执行,

对于throwing对应的通知方法参数为Throwable类型将匹配任何异常。

 

4. 后置最终通知

@After("executeService()")

public void doAfterAdvice(JoinPoint joinPoint){}

 

目标方法只要执行完了就会执行后置通知方法

 

 

5. 环绕通知

@Around("execution(* com.zkn.learnspringboot.web.controller..*.testAround*(..))"

public Object doAroundAdvice(ProceedingJoinPoint proceedingJoinPoint){}

 

环绕通知非常强大,可以决定目标方法是否执行,什么时候执行,执行时是否需要替换方法参数,执行完毕是否需要替换返回值。

环绕通知第一个参数必须是org.aspectj.lang.ProceedingJoinPoint类型。

 

4. JoinPoint 类

//获取目标方法的参数信息  

Object[] obj = joinPoint.getArgs();  

//AOP代理类的信息  

joinPoint.getThis();  

//代理的目标对象  

joinPoint.getTarget();  

//用的最多 通知的签名  

Signature signature = joinPoint.getSignature();  

//代理的是哪一个方法  

System.out.println(signature.getName());  

//AOP代理类的名字  

System.out.println(signature.getDeclaringTypeName());  

//AOP代理类的类(class)信息  

signature.getDeclaringType();

5. ProceedingJoinPoint

使用同joinPoint类,只是多了一个proceed方法,通知中必须调用这个方法。

猜你喜欢

转载自blog.csdn.net/wangzhanzheng/article/details/80654117