热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

SpringAOP学习笔记Advice执行顺序

一、Advice执行顺序二、Advice在同一个Aspect中三、Advice在不同的Aspect中一、Advice执行顺序如果多个Advice和同一个JointPoint连接&

      • 一、Advice执行顺序
      • 二、Advice在同一个Aspect中
      • 三、Advice在不同的Aspect中


一、Advice执行顺序

如果多个Advice和同一个JointPoint连接,我们需要指明每一个Advice的执行顺序,那么我们就需要分两种情况讨论,

  • 第一种是如果Advice在同一个Aspect当中,那么执行的顺序是按照Advice在Aspect的声明顺序执行的。
  • 如果Advice在不同的Aspect当中,那么执行的顺序是需要将Aspect继承Ordered这个类,然后覆写getOrder方法

二、Advice在同一个Aspect中

AdviceOrder.java 在这个Aspect中我们指明了Pointcut和Advice的类型,我们可以看到,两个Before类型的Advice切入到了同一个JointPoint上,两个AfterReturning类型的Advice切入到了同一个JointPoint上。

package com.zbt.day04;import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;@Aspect
public class AdviceOrder {@Pointcut("execution(* com.zbt.day04.*.*(..))")public void methodPoint(){}@Before("methodPoint()")public void beforeAdviceI(){System.out.println("before advice I 执行了");}@Before("methodPoint()")public void beforeAdviceII(){System.out.println("before advice II 执行了");}@AfterReturning("methodPoint()")public void afterReturningI(){System.out.println("After Returning Advice I 执行了");}@AfterReturning("methodPoint()")public void afterReturningII(){System.out.println("After Returning Advice I 执行了");}
}

TargetClass.java 这是一个目标类,其中的sayHello方法是JointPoint

package com.zbt.day04;public class TargetClass {public void sayHello(){System.out.println("Hello,What a good day!");}
}

XML配置文档


<beans xmlns&#61;"http://www.springframework.org/schema/beans"xmlns:xsi&#61;"http://www.w3.org/2001/XMLSchema-instance"xmlns:context&#61;"http://www.springframework.org/schema/context"xmlns:aop&#61;"http://www.springframework.org/schema/aop"xsi:schemaLocation&#61;"http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop.xsd"><aop:aspectj-autoproxy/><bean id&#61;"adviceOrder" class&#61;"com.zbt.day04.AdviceOrder">bean><bean id&#61;"targetClass" class&#61;"com.zbt.day04.TargetClass">bean>beans>

TestTargetClass.java 测试类

package com.zbt.day04;import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;public class TestAdvice {&#64;Testpublic void testTargetClass(){ApplicationContext context &#61; new ClassPathXmlApplicationContext("day04_config.xml");TargetClass targetClass &#61; context.getBean("targetClass",TargetClass.class);targetClass.sayHello();}
}

测试结果

before advice I 执行了
before advice II 执行了
Hello,What a good day!
After Returning Advice I 执行了
After Returning Advice II 执行了

从结果我们可以看到&#xff0c;这个beforeAdviceI在beforeAdviceII之前执行&#xff0c;而afterReturningI在afterReturningII之前执行了&#xff0c;正好印证了我们之前所说的在同一个Aspect内&#xff0c;那么如果多个相同类型的Advice连接到同一个JointPoint上&#xff0c;此时执行的顺序就是按照Advice在Aspect中声明的顺序执行的。

三、Advice在不同的Aspect中

如果有多个Aspect的相同类型的Advice切入同一个JointPoint当中&#xff0c;如果我们想要指定这写Advice执行的顺序&#xff0c;因此我们的Aspect需要继承org.springframework.core.Ordered这个类。
AdviceOrderI.java 这个类是一个Aspect继承了Order方法&#xff0c;同时覆写了getOrder方法。切入com.zbt.day05中所有的方法。提供了一个BeforeAdvice和一个AfterAdvice&#xff0c;同时

package com.zbt.day05;import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.core.Ordered;&#64;Aspect
public class AdviceOrderI implements Ordered{&#64;Pointcut("execution(* com.zbt.day05.*.*(..))")public void pointI(){}&#64;Before("pointI()")public void beforeAdviceI(){System.out.println("AdviceOrderI 的 Before Advice I 执行了");}&#64;AfterReturning("pointI()")public void afterReturningI(){System.out.println("AdviceOrderI 的 After Returning Advice I 执行了");}&#64;Overridepublic int getOrder() {return 20;}
}

AdviceOrderII.java同样也继承了Ordered类&#xff0c;最后

package com.zbt.day05;import org.aspectj.lang.annotation.AfterReturning;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.core.Ordered;&#64;Aspect
public class AdviceOrderII implements Ordered{&#64;Pointcut("com.zbt.day05.AdviceOrderI.pointI()")//复用Advicepublic void pointII(){}&#64;Before("pointII()")public void beforeAdviceII(){System.out.println("AdviceOrderII 的 Before Advice II 执行了");}&#64;AfterReturning("pointII()")public void afterReturningII(){System.out.println("AdviceOrderII 的 After Returning Advice II 执行了");}&#64;Overridepublic int getOrder() {return 10;}
}

TargetClass.java是一个目标类&#xff0c;sayHello是一个JointPoint

package com.zbt.day05;public class TargetClass {public void sayHello(){System.out.println("Hello,What a good day!");}
}

XML配置文档


<beans xmlns&#61;"http://www.springframework.org/schema/beans"xmlns:xsi&#61;"http://www.w3.org/2001/XMLSchema-instance"xmlns:context&#61;"http://www.springframework.org/schema/context"xmlns:aop&#61;"http://www.springframework.org/schema/aop"xsi:schemaLocation&#61;"http://www.springframework.org/schema/beanshttp://www.springframework.org/schema/beans/spring-beans.xsdhttp://www.springframework.org/schema/contexthttp://www.springframework.org/schema/context/spring-context.xsdhttp://www.springframework.org/schema/aophttp://www.springframework.org/schema/aop/spring-aop.xsd"><aop:aspectj-autoproxy/><bean id&#61;"adviceOrderI" class&#61;"com.zbt.day05.AdviceOrderI">bean><bean id&#61;"adviceOrderII" class&#61;"com.zbt.day05.AdviceOrderII">bean><bean id&#61;"targetClass" class&#61;"com.zbt.day05.TargetClass">bean>
beans>

TestTargetClass测试类

package com.zbt.day05;import com.zbt.day04.*;
import org.junit.Test;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;public class TestTargetClass {&#64;Testpublic void testTargetClass(){ApplicationContext context &#61; new ClassPathXmlApplicationContext("day05_config.xml");TargetClass targetClass &#61; context.getBean("targetClass", TargetClass.class);targetClass.sayHello();}
}

输出结果

AdviceOrderII 的 Before Advice II 执行了
AdviceOrderI 的 Before Advice I 执行了
Hello,What a good day!
AdviceOrderI 的 After Returning Advice I 执行了
AdviceOrderII 的 After Returning Advice II 执行了

从结果我们也可以看如果我们的Ordered返回的order越小&#xff0c;那么这个Aspect的BeforeAdvice就会在前面执行&#xff0c;而AfterReturning类型的Advice就会在后面执行。


推荐阅读
  • 烤鸭|本文_Spring之Bean的生命周期详解
    烤鸭|本文_Spring之Bean的生命周期详解 ... [详细]
  • 本文介绍如何使用 Android 的 Canvas 和 View 组件创建一个简单的绘图板应用程序,支持触摸绘画和保存图片功能。 ... [详细]
  • 深入解析Spring启动过程
    本文详细介绍了Spring框架的启动流程,帮助开发者理解其内部机制。通过具体示例和代码片段,解释了Bean定义、工厂类、读取器以及条件评估等关键概念,使读者能够更全面地掌握Spring的初始化过程。 ... [详细]
  • 我有一个SpringRestController,它处理API调用的版本1。继承在SpringRestControllerpackagerest.v1;RestCon ... [详细]
  • ListView简单使用
    先上效果:主要实现了Listview的绑定和点击事件。项目资源结构如下:先创建一个动物类,用来装载数据:Animal类如下:packagecom.example.simplelis ... [详细]
  • springMVC JRS303验证 ... [详细]
  • 本文介绍了在Android项目中实现时间轴效果的方法,通过自定义ListView的Item布局和适配器逻辑,实现了动态显示和隐藏时间标签的功能。文中详细描述了布局文件、适配器代码以及时间格式化工具类的具体实现。 ... [详细]
  • 简化报表生成:EasyReport工具的全面解析
    本文详细介绍了EasyReport,一个易于使用的开源Web报表工具。该工具支持Hadoop、HBase及多种关系型数据库,能够将SQL查询结果转换为HTML表格,并提供Excel导出、图表显示和表头冻结等功能。 ... [详细]
  • 本文详细介绍如何使用 Python 集成微信支付的三种主要方式:Native 支付、APP 支付和 JSAPI 支付。每种方式适用于不同的应用场景,如 PC 网站、移动端应用和公众号内支付等。 ... [详细]
  • ssm框架整合及工程分层1.先创建一个新的project1.1配置pom.xml ... [详细]
  • 在编译BSP包过程中,遇到了一个与 'gets' 函数相关的编译错误。该问题通常发生在较新的编译环境中,由于 'gets' 函数已被弃用并视为安全漏洞。本文将详细介绍如何通过修改源代码和配置文件来解决这一问题。 ... [详细]
  • 深入解析 Android IPC 中的 Messenger 机制
    本文详细介绍了 Android 中基于消息传递的进程间通信(IPC)机制——Messenger。通过实例和源码分析,帮助开发者更好地理解和使用这一高效的通信工具。 ... [详细]
  • Logback使用小结
    1一定要使用slf4j的jar包,不要使用apachecommons的jar。否则滚动生成文件不生效,不滚动的时候却生效~~importorg.slf ... [详细]
  • Win10 UWP 开发技巧:利用 XamlTreeDump 获取 XAML 元素树
    本文介绍如何在 Win10 UWP 开发中使用 XamlTreeDump 库来获取和转换 XAML 元素树为 JSON 字符串,这对于 UI 单元测试非常有用。 ... [详细]
  • Android中实现复合旋转动画效果
    本文将探讨如何在Android应用中实现动态且吸引人的旋转动画。通过结合多种动画类型,如透明度变化、旋转、缩放和位移,可以创造出更为复杂的视觉效果。我们将从XML布局和Java代码两个方面进行详细介绍。 ... [详细]
author-avatar
文之辅翼_770
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有