美文网首页
03 AOP学习之五种通知

03 AOP学习之五种通知

作者: 幽暗金 | 来源:发表于2018-01-11 16:29 被阅读0次

Spring AOP五种通知详解

spring aop通知(advice)分成五类:

  1. 前置通知Before advice:在连接点前面执行,前置通知不会影响连接点的执行,除非此处抛出异常。
  2. 正常返回通知After returning advice:在连接点正常执行完成后执行,如果连接点抛出异常,则不会执行。
  3. 异常返回通知After throwing advice:在连接点抛出异常后执行。
  4. 后置通知After (finally) advice:在连接点执行完成后执行,不管是正常执行完成,还是抛出异常,都会执行返回通知中的内容。
  5. 环绕通知Around advice:环绕通知围绕在连接点前后,比如一个方法调用的前后。这是最强大的通知类型,能在方法调用前后自定义一些操作。环绕通知还需要负责决定是继续处理join point(调用ProceedingJoinPoint的proceed方法)还是中断执行。

五种通知的执行顺序

  • 在方法执行正常时:

    1. 环绕通知@Around
    2. 前置通知@Before
    3. 方法执行
    4. 环绕通知@Around
    5. 后置通知@After
    6. 正常返回通知@AfterReturning
  • 在方法执行抛出异常时:

    这个时候顺序会根据环绕通知的不同而发生变化:

    • 环绕通知捕获异常并不抛出:
      1. 环绕通知@Around
      2. 前置通知@Before
      3. 方法执行
      4. 环绕通知@Around
      5. 后置通知@After
      6. 正常返回通知@AfterReturning
    • 环绕通知捕获异常并抛出:
      1. 环绕通知@Around
      2. 前置通知@Before
      3. 方法执行
      4. 环绕通知@Around
      5. 后置通知@After
      6. 异常返回通知@AfterThrowing

示例

准备工作:参考P01-01

  1. 创建服务

    • 创建package命名为com.learn.service(根据实际情况修改)

    • 创建接口IHelloService,内容如下

      public interface IHelloService {
          void sayHello();
      
          void say(String msg);
      
          void err(boolean isThrow);
      }
      
    • 创建package命名为com.learn.service.impl(根据实际情况修改)

    • 创建接口IHelloService的实现类HelloServiceImpl,内容如下

      package com.learn.service.impl;
      
      import com.learn.service.IHelloService;
      import org.springframework.stereotype.Service;
      
      @Service
      public class HelloServiceImpl implements IHelloService {
          @Override
          public void sayHello() {
              System.out.println("hello");
          }
      
          @Override
          public void say(String msg) {
              System.out.println(msg);
          }
      
          @Override
          public void err(boolean isThrow) {
              System.out.println("error begin");
              throw new RuntimeException("sss");
          }
      }
      
  2. 创建AOP

    • 创建package命名为com.learn.aop(根据实际情况修改)

    • 配置AOP,新建ExecutionAOP,内容如下

      @Aspect
      @Component
      public class ExecutionAop {
      
          // 切点范围
          @Pointcut("execution(* com.learn.service..*(..))")
          public void pointcut(){ }
      
          @Before("pointcut()")
          public void before() {
              System.out.println("---------------@Before----------------");
          }
      
          @AfterReturning("pointcut()")
          public void afterReturning() {
              System.out.println("---------------@AfterReturning----------------");
          }
      
          @After("pointcut()")
          public void after() {
              System.out.println("---------------@After----------------");
          }
      
          @AfterThrowing("pointcut()")
          public void afterThrowing() {
              System.out.println("---------------@AfterThrowing----------------");
          }
      
          @Around("pointcut()")
          public Object around(ProceedingJoinPoint pjp) throws Throwable {
              Object result;
              System.out.println("---------------@Around前----------------");
              try {
                  result = pjp.proceed();
              } catch (Throwable throwable) {
                  System.out.println("---------------@Around异常----------------");
                  // 监听参数为true则抛出异常,为false则捕获并不抛出异常
                  if (pjp.getArgs().length > 0 && !(Boolean) pjp.getArgs()[0]) {
                      result = null;
                  } else {
                      throw throwable;
                  }
              }
              System.out.println("---------------@Around后----------------");
              return result;
          }
      
          // Around简单示例
      //    @Around("pointcut()")
      //    public Object around(ProceedingJoinPoint pjp) throws Throwable {
      //        Object result;
      //        System.out.println("---------------@Around前----------------");
      //        result = pjp.proceed();
      //        System.out.println("---------------@Around后----------------");
      //        return result;
      //    }
      
      }
      
  3. 创建测试用例

    @RunWith(SpringRunner.class)
    @SpringBootTest
    public class ApplicationTests {
    
        @Resource
        private IHelloService helloService;
    
        @Test
        public void test1() {
            helloService.sayHello();
        }
    
        @Test
        public void test2() {
            helloService.say("hello");
        }
    
        @Test
        public void test3() {
            System.out.println("begin");
            helloService.err(true);
            System.out.println("end");
        }
    
        @Test
        public void test4() {
            System.out.println("begin");
            helloService.err(false);
            System.out.println("end");
        }
    }
    
    • 执行test1可得到结果

      ---------------@Around前----------------
      ---------------@Before----------------
      hello
      ---------------@Around后----------------
      ---------------@After----------------
      ---------------@AfterReturning----------------
      
    • 执行test2结果与test1一样

    • 执行test3可得到结果(在环绕通知中抛出异常)

      begin
      ---------------@Around前----------------
      ---------------@Before----------------
      error begin
      ---------------@Around异常----------------
      ---------------@After----------------
      ---------------@AfterThrowing----------------
      
      java.lang.RuntimeException: sss
      ...
      
    • 执行test4可得到结果(在环绕通知中不抛出异常)

      begin
      ---------------@Around前----------------
      ---------------@Before----------------
      error begin
      ---------------@Around异常----------------
      ---------------@Around后----------------
      ---------------@After----------------
      ---------------@AfterReturning----------------
      end
      

多个AOP之间的执行顺序

使用注解@Order
参照文章 http://blog.csdn.net/qqxhwwqwq/article/details/51678595
结论:Spring AOP就是一个同心圆,要执行的方法为圆心,最外层的order最小,环绕、前置通知先执行,后置、返回通知后执行。

目录
源码链接

相关文章

  • 03 AOP学习之五种通知

    Spring AOP五种通知详解 spring aop通知(advice)分成五类: 前置通知Before adv...

  • 04 AOP学习之通知参数

    Spring AOP通知参数 前边章节已经介绍了声明通知,但如果想获取被被通知方法参数并传递给通知方法,该如何实现...

  • Spring接口代理实现

    AOP联盟通知类型AOP联盟为通知Advice定义了org.aopalliance.aop.Advice 开发通知...

  • Android中使用AspectJ

    aop学习 深入理解Android之AOP 什么是AOP AOP是Aspect Oriented Programm...

  • Sprint-AOP

    注解AOP AOP的各种通知

  • [java][SpringAOP]

    为什么会有AOP 实现AOP原理 AOP通知类型 AOP在Spring中配置

  • Spring之AOP【一】

    title: Spring之AOP【一】date: 2017-03-20 02:33:06tags: Java S...

  • Spring之AOP【二】

    title: Spring之AOP【二】date: 2017-03-25 02:42:16tags: Java S...

  • Spring AOP编程详细介绍

    查看原文: Spring AOP 之 通知、连接点、切点、切面知乎:什么是面向切面编程

  • 第五章 spring aop

    5.1 AOP概念 spring aop核心概念图 通知 定义:在特定连接点执行的代码就是通知。内容:通知定义了切...

网友评论

      本文标题:03 AOP学习之五种通知

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