面向切面编程——思想:在一个地方定义通用功能,但是可以通过声明的方式定义这个功能要以何种方式在何处运用,而无须修改受影响的类。

切面:横切关注点可以被模块化为特殊的类。

优点:

1、每个关注点都集中在一个地方,而不是分散到多出代码中;

2、服务模块更简洁,它只要关心核心功能,次要功能被转移到切面中了。

织入——把切面运用到目标对象并创建新的代理对象的过程。切面在指定的连接点被织入到目标对象中。在目标对象的生命周期里有多个点可以织入:

(1)、编译期 (2)、类加载期

(3)、运行期:切面在应用运行的某个时刻被织入。SpringAOP——为目标对象动态地创建一个代理对象 。

通过代理类的包裹切面,Spring在运行期把切面织入到Spring管理的bean中。代理类封装了目标类,并拦截被通知方法的调用,再把调用转发给真正的目标bean。当代理拦截到方法的调用时,再调用目标bean方法之前,会执行切面逻辑。

Spring只支持方法级别的连接点,不支持字段和构造器接入点。

27、AOP-AOP功能测试

  1. @Aspect
  2. public class LogAspects {
  3.  
  4. //抽取公共的切入点表达式
  5. //1、本类引用
  6. //2、其他的切面引用
  7. @Pointcut("execution(public int com.atguigu.aop.MathCalculator.*(..))")
  8. public void pointCut(){};
  9.  
  10. //@Before在目标方法之前切入;切入点表达式(指定在哪个方法切入)
  11. @Before("pointCut()")
  12. public void logStart(JoinPoint joinPoint){
  13. Object[] args = joinPoint.getArgs();
  14. System.out.println(""+joinPoint.getSignature().getName()+"运行。。。@Before:参数列表是:{"+Arrays.asList(args)+"}");
  15. }
  16.  
  17. @After("com.atguigu.aop.LogAspects.pointCut()")
  18. public void logEnd(JoinPoint joinPoint){
  19. System.out.println(""+joinPoint.getSignature().getName()+"结束。。。@After");
  20. }
  21.  
  22. //JoinPoint一定要出现在参数表的第一位
  23. @AfterReturning(value="pointCut()",returning="result")
  24. public void logReturn(JoinPoint joinPoint,Object result){
  25. System.out.println(""+joinPoint.getSignature().getName()+"正常返回。。。@AfterReturning:运行结果:{"+result+"}");
  26. }
  27.  
  28. @AfterThrowing(value="pointCut()",throwing="exception")
  29. public void logException(JoinPoint joinPoint,Exception exception){
  30. System.out.println(""+joinPoint.getSignature().getName()+"异常。。。异常信息:{"+exception+"}");
  31. }
  32.  
  33. }
  1. public class MathCalculator {
  2.  
  3. public int div(int i,int j){
  4. System.out.println("MathCalculator...div...");
  5. return i/j;
  6. }
  7.  
  8. }
  1. @Test
  2. public void test01(){
  3. AnnotationConfigApplicationContext applicationContext = new AnnotationConfigApplicationContext(MainConfigOfAOP.class);
  4.  
  5. //1、不要自己创建对象,否则无法执行AOP方法
  6. // MathCalculator mathCalculator = new MathCalculator();
  7. // mathCalculator.div(1, 1);
  8. MathCalculator mathCalculator = applicationContext.getBean(MathCalculator.class);
  9. mathCalculator.div(1, 0);
  10. applicationContext.close();
  11. }

28、[源码]-AOP原理-@EnableAspectJAutoProxy

29、[源码]-AOP原理-AnnotationAwareAspectJAutoProxyCreator分析

30、[源码]-AOP原理-注册AnnotationAwareAspectJAutoProxyCreator

31、[源码]-AOP原理-AnnotationAwareAspectJAutoProxyCreator执行时机

32、[源码]-AOP原理-创建AOP代理

33、[源码]-AOP原理-获取拦截器链-MethodInterceptor

34、[源码]-AOP原理-链式调用通知方法

35、[源码]-AOP-原理总结

  1. /**
  2. * AOP:【动态代理】
  3. * 指在程序运行期间动态的将某段代码切入到指定方法指定位置进行运行的编程方式;
  4. *
  5. * 1、导入aop模块;Spring AOP:(spring-aspects)
  6. * 2、定义一个业务逻辑类(MathCalculator);在业务逻辑运行的时候将日志进行打印(方法之前、方法运行结束、方法出现异常,xxx)
  7. * 3、定义一个日志切面类(LogAspects):切面类里面的方法需要动态感知MathCalculator.div运行到哪里然后执行;
  8. * 通知方法:
  9. * 前置通知(@Before):logStart:在目标方法(div)运行之前运行
  10. * 后置通知(@After):logEnd:在目标方法(div)运行结束之后运行(无论方法正常结束还是异常结束)
  11. * 返回通知(@AfterReturning):logReturn:在目标方法(div)正常返回之后运行
  12. * 异常通知(@AfterThrowing):logException:在目标方法(div)出现异常以后运行
  13. * 环绕通知(@Around):动态代理,手动推进目标方法运行(joinPoint.procced())
  14. * 4、给切面类的目标方法标注何时何地运行(通知注解);
  15. * 5、将切面类和业务逻辑类(目标方法所在类)都加入到容器中;
  16. * 6、必须告诉Spring哪个类是切面类(给切面类上加一个注解:@Aspect)
  17. * [7]、给配置类中加 @EnableAspectJAutoProxy 【开启基于注解的aop模式】
  18. * 在Spring中很多的 @EnableXXX;
  19. *
  20. * 三步:
  21. * 1)、将业务逻辑组件和切面类都加入到容器中;告诉Spring哪个是切面类(@Aspect)
  22. * 2)、在切面类上的每一个通知方法上标注通知注解,告诉Spring何时何地运行(切入点表达式)
  23. * 3)、开启基于注解的aop模式;@EnableAspectJAutoProxy
  24. *
  25. * AOP原理:【看给容器中注册了什么组件,这个组件什么时候工作,这个组件的功能是什么?】
  26. * @EnableAspectJAutoProxy;
  27. * 1、@EnableAspectJAutoProxy是什么?
  28. * @Import(AspectJAutoProxyRegistrar.class):给容器中导入AspectJAutoProxyRegistrar
  29. * 利用AspectJAutoProxyRegistrar自定义给容器中注册bean;BeanDefinetion
  30. * internalAutoProxyCreator=AnnotationAwareAspectJAutoProxyCreator
  31. *
  32. * 给容器中注册一个AnnotationAwareAspectJAutoProxyCreator;
  33. *
  34. * 2、 AnnotationAwareAspectJAutoProxyCreator:
  35. * AnnotationAwareAspectJAutoProxyCreator
  36. * ->AspectJAwareAdvisorAutoProxyCreator
  37. * ->AbstractAdvisorAutoProxyCreator
  38. * ->AbstractAutoProxyCreator
  39. * implements SmartInstantiationAwareBeanPostProcessor, BeanFactoryAware
  40. * 关注后置处理器(在bean初始化完成前后做事情)、自动装配BeanFactory
  41. *
  42. * AbstractAutoProxyCreator.setBeanFactory()
  43. * AbstractAutoProxyCreator.有后置处理器的逻辑;
  44. *
  45. * AbstractAdvisorAutoProxyCreator.setBeanFactory()-》initBeanFactory()
  46. *
  47. * AnnotationAwareAspectJAutoProxyCreator.initBeanFactory()
  48. *
  49. *
  50. * 流程:
  51. * 1)、传入配置类,创建ioc容器
  52. * 2)、注册配置类,调用refresh()刷新容器;
  53. * 3)、registerBeanPostProcessors(beanFactory);注册bean的后置处理器来方便拦截bean的创建;
  54. * 1)、先获取ioc容器已经定义了的需要创建对象的所有BeanPostProcessor
  55. * 2)、给容器中加别的BeanPostProcessor
  56. * 3)、优先注册实现了PriorityOrdered接口的BeanPostProcessor;
  57. * 4)、再给容器中注册实现了Ordered接口的BeanPostProcessor;
  58. * 5)、注册没实现优先级接口的BeanPostProcessor;
  59. * 6)、注册BeanPostProcessor,实际上就是创建BeanPostProcessor对象,保存在容器中;
  60. * 创建internalAutoProxyCreator的BeanPostProcessor【AnnotationAwareAspectJAutoProxyCreator】
  61. * 1)、创建Bean的实例
  62. * 2)、populateBean;给bean的各种属性赋值
  63. * 3)、initializeBean:初始化bean;
  64. * 1)、invokeAwareMethods():处理Aware接口的方法回调
  65. * 2)、applyBeanPostProcessorsBeforeInitialization():应用后置处理器的postProcessBeforeInitialization()
  66. * 3)、invokeInitMethods();执行自定义的初始化方法
  67. * 4)、applyBeanPostProcessorsAfterInitialization();执行后置处理器的postProcessAfterInitialization();
  68. * 4)、BeanPostProcessor(AnnotationAwareAspectJAutoProxyCreator)创建成功;--》aspectJAdvisorsBuilder
  69. * 7)、把BeanPostProcessor注册到BeanFactory中;
  70. * beanFactory.addBeanPostProcessor(postProcessor);
  71. * =======以上是创建和注册AnnotationAwareAspectJAutoProxyCreator的过程========
  72. *
  73. * AnnotationAwareAspectJAutoProxyCreator => InstantiationAwareBeanPostProcessor
  74. * 4)、finishBeanFactoryInitialization(beanFactory);完成BeanFactory初始化工作;创建剩下的单实例bean
  75. * 1)、遍历获取容器中所有的Bean,依次创建对象getBean(beanName);
  76. * getBean->doGetBean()->getSingleton()->
  77. * 2)、创建bean
  78. * 【AnnotationAwareAspectJAutoProxyCreator在所有bean创建之前会有一个拦截,InstantiationAwareBeanPostProcessor,会调用postProcessBeforeInstantiation()】
  79. * 1)、先从缓存中获取当前bean,如果能获取到,说明bean是之前被创建过的,直接使用,否则再创建;
  80. * 只要创建好的Bean都会被缓存起来
  81. * 2)、createBean();创建bean;
  82. * AnnotationAwareAspectJAutoProxyCreator 会在任何bean创建之前先尝试返回bean的实例
  83. * 【BeanPostProcessor是在Bean对象创建完成初始化前后调用的】
  84. * 【InstantiationAwareBeanPostProcessor是在创建Bean实例之前先尝试用后置处理器返回对象的】
  85. * 1)、resolveBeforeInstantiation(beanName, mbdToUse);解析BeforeInstantiation
  86. * 希望后置处理器在此能返回一个代理对象;如果能返回代理对象就使用,如果不能就继续
  87. * 1)、后置处理器先尝试返回对象;
  88. * bean = applyBeanPostProcessorsBeforeInstantiation():
  89. * 拿到所有后置处理器,如果是InstantiationAwareBeanPostProcessor;
  90. * 就执行postProcessBeforeInstantiation
  91. * if (bean != null) {
  92. bean = applyBeanPostProcessorsAfterInitialization(bean, beanName);
  93. }
  94. *
  95. * 2)、doCreateBean(beanName, mbdToUse, args);真正的去创建一个bean实例;和3.6流程一样;
  96. * 3)、
  97. *
  98. *
  99. * AnnotationAwareAspectJAutoProxyCreator【InstantiationAwareBeanPostProcessor】 的作用:
  100. * 1)、每一个bean创建之前,调用postProcessBeforeInstantiation();
  101. * 关心MathCalculator和LogAspect的创建
  102. * 1)、判断当前bean是否在advisedBeans中(保存了所有需要增强bean)
  103. * 2)、判断当前bean是否是基础类型的Advice、Pointcut、Advisor、AopInfrastructureBean,
  104. * 或者是否是切面(@Aspect)
  105. * 3)、是否需要跳过
  106. * 1)、获取候选的增强器(切面里面的通知方法)【List<Advisor> candidateAdvisors】
  107. * 每一个封装的通知方法的增强器是 InstantiationModelAwarePointcutAdvisor;
  108. * 判断每一个增强器是否是 AspectJPointcutAdvisor 类型的;返回true
  109. * 2)、永远返回false
  110. *
  111. * 2)、创建对象
  112. * postProcessAfterInitialization;
  113. * return wrapIfNecessary(bean, beanName, cacheKey);//包装如果需要的情况下
  114. * 1)、获取当前bean的所有增强器(通知方法) Object[] specificInterceptors
  115. * 1、找到候选的所有的增强器(找哪些通知方法是需要切入当前bean方法的)
  116. * 2、获取到能在bean使用的增强器。
  117. * 3、给增强器排序
  118. * 2)、保存当前bean在advisedBeans中;
  119. * 3)、如果当前bean需要增强,创建当前bean的代理对象;
  120. * 1)、获取所有增强器(通知方法)
  121. * 2)、保存到proxyFactory
  122. * 3)、创建代理对象:Spring自动决定
  123. * JdkDynamicAopProxy(config);jdk动态代理;
  124. * ObjenesisCglibAopProxy(config);cglib的动态代理;
  125. * 4)、给容器中返回当前组件使用cglib增强了的代理对象;
  126. * 5)、以后容器中获取到的就是这个组件的代理对象,执行目标方法的时候,代理对象就会执行通知方法的流程;
  127. *
  128. *
  129. * 3)、目标方法执行 ;
  130. * 容器中保存了组件的代理对象(cglib增强后的对象),这个对象里面保存了详细信息(比如增强器,目标对象,xxx);
  131. * 1)、CglibAopProxy.intercept();拦截目标方法的执行
  132. * 2)、根据ProxyFactory对象获取将要执行的目标方法拦截器链;
  133. * List<Object> chain = this.advised.getInterceptorsAndDynamicInterceptionAdvice(method, targetClass);
  134. * 1)、List<Object> interceptorList保存所有拦截器 5
  135. * 一个默认的ExposeInvocationInterceptor 和 4个增强器;
  136. * 2)、遍历所有的增强器,将其转为Interceptor;
  137. * registry.getInterceptors(advisor);
  138. * 3)、将增强器转为List<MethodInterceptor>;
  139. * 如果是MethodInterceptor,直接加入到集合中
  140. * 如果不是,使用AdvisorAdapter将增强器转为MethodInterceptor;
  141. * 转换完成返回MethodInterceptor数组;
  142. *
  143. * 3)、如果没有拦截器链,直接执行目标方法;
  144. * 拦截器链(每一个通知方法又被包装为方法拦截器,利用MethodInterceptor机制)
  145. * 4)、如果有拦截器链,把需要执行的目标对象,目标方法,
  146. * 拦截器链等信息传入创建一个 CglibMethodInvocation 对象,
  147. * 并调用 Object retVal = mi.proceed();
  148. * 5)、拦截器链的触发过程;
  149. * 1)、如果没有拦截器执行执行目标方法,或者拦截器的索引和拦截器数组-1大小一样(指定到了最后一个拦截器)执行目标方法;
  150. * 2)、链式获取每一个拦截器,拦截器执行invoke方法,每一个拦截器等待下一个拦截器执行完成返回以后再来执行;
  151. * 拦截器链的机制,保证通知方法与目标方法的执行顺序;
  152. *
  153. * 总结:
  154. * 1)、 @EnableAspectJAutoProxy 开启AOP功能
  155. * 2)、 @EnableAspectJAutoProxy 会给容器中注册一个组件 AnnotationAwareAspectJAutoProxyCreator
  156. * 3)、AnnotationAwareAspectJAutoProxyCreator是一个后置处理器;
  157. * 4)、容器的创建流程:
  158. * 1)、registerBeanPostProcessors()注册后置处理器;创建AnnotationAwareAspectJAutoProxyCreator对象
  159. * 2)、finishBeanFactoryInitialization()初始化剩下的单实例bean
  160. * 1)、创建业务逻辑组件和切面组件
  161. * 2)、AnnotationAwareAspectJAutoProxyCreator拦截组件的创建过程
  162. * 3)、组件创建完之后,判断组件是否需要增强
  163. * 是:切面的通知方法,包装成增强器(Advisor);给业务逻辑组件创建一个代理对象(cglib);
  164. * 5)、执行目标方法:
  165. * 1)、代理对象执行目标方法
  166. * 2)、CglibAopProxy.intercept();
  167. * 1)、得到目标方法的拦截器链(增强器包装成拦截器MethodInterceptor)
  168. * 2)、利用拦截器的链式机制,依次进入每一个拦截器进行执行;
  169. * 3)、效果:
  170. * 正常执行:前置通知-》目标方法-》后置通知-》返回通知
  171. * 出现异常:前置通知-》目标方法-》后置通知-》异常通知
  172. *
  173. *
  174. *
  175. */

流程图总结:

重新学习Spring注解——AOP的更多相关文章

  1. 跟着刚哥学习Spring框架--AOP(五)

    AOP AOP(Aspect Oriented Programming),即面向切面编程,可以说是OOP(Object Oriented Programming,面向对象编程)的补充和完善.OOP引入 ...

  2. Spring注解 - AOP 面向切面编程

    基本概念: AOP:Aspect Oriented Programming,即面向切面编程 指在程序运行期间动态的将某段代码切入到指定方法指定位置进行运行的编程方式 前置通知(@Before):在目标 ...

  3. spring学习 十三 注解AOP

    spring 不会自动去寻找注解,必须告诉 spring 哪些包下的类中可能有注解,也就是要开启注解扫描,注解的包是spring-context.jar,所以在配置文件中还要引入context约束,也 ...

  4. 基于spring注解AOP的异常处理

    一.前言 项目刚刚开发的时候,并没有做好充足的准备.开发到一定程度的时候才会想到还有一些问题没有解决.就比如今天我要说的一个问题:异常的处理.写程序的时候一般都会通过try...catch...fin ...

  5. Spring注解AOP及单元测试junit(6)

    2019-03-10/20:19:56 演示:将xml配置方式改为注解方式 静态以及动态代理推荐博客:https://blog.csdn.net/javazejian/article/details/ ...

  6. 学习 Spring (十三) AOP 配置

    Spring入门篇 学习笔记 Spring 所有的切面和通知器都必须放在一个 内(可以配置包含多个 元素),每一个 可以包含 pointcut, advisor 和 aspect 元素(它们必须按照这 ...

  7. spring 注解AOP

     aspectAnnotation的切面信息,加到了AnnotationAwareAspectJAutoProxyCreator的advisorsCache属性里面去了. 解析annotationSe ...

  8. 重新学习Spring注解——Spring容器

    44.[源码]-Spring容器创建-BeanFactory预准备 45.[源码]-Spring容器创建-执行BeanFactoryPostProcessor 46.[源码]-Spring容器创建-注 ...

  9. spring注解 aop

    @Resource(name="as")  为空按类型装配 @autowired 按类型 @quafiler (name="xx") 按名称 spring继承关 ...

随机推荐

  1. 【网络知识之三】HTTPS协议

    HTTPS是身披SSL外壳的HTTP.HTTPS是一种通过计算机网络进行安全通信的传输协议,经由HTTP进行通信,利用SSL/TLS建立全信道,加密数据包.HTTPS使用的主要目的是提供对网站服务器的 ...

  2. Shell脚本——添加和删除用户

    写一个脚本admin_user.sh,其用法格式为: admin_user.sh --add USERLIST --del USERLIST -v|--verbose -h|--help 其中, -h ...

  3. SWIG 3 中文手册——3. Windows 上使用 SWIG

    目录 3 Windows 上使用 SWIG 后续章节 3 Windows 上使用 SWIG 暂时略过. 后续章节 <4. 脚本语言>

  4. Zookeeper原理图

  5. python解决自动化测试静态页面加载慢的情况

    # coding:utf8from selenium import webdriverimport time # 创建一个ChromeOptions的对象option = webdriver.Chro ...

  6. 更新element-ui版本

    1. 卸载当前版本 npm uninstall element-ui 2. 安装指定版本 npm -S

  7. pxelinux.0:winboot:网络引导(启动)wim格式的windows PE系统:配置文件写法

    关键:加载wimboot引导模块,并传入参数 todo:通过标准kenerl的append传入启动参数..........todo.todo default menu.c32 label wimboo ...

  8. WPF 精修篇 动画组TransformGroup

    原文:WPF 精修篇 动画组TransformGroup 动画分组 TransformGroup 一个元素可能要有缩放 ScaleTransform和移动 TranslateTransform等多个效 ...

  9. 开源矿工工具箱新增了ETH反抽水工具

    开源矿工工具箱新增了ETH反抽水工具 —— 将决定使用Claymore挖ETH时拦截的老外的抽水归谁的权力交给矿工 众所周知,所有的挖矿辅助工具都拦截了老外的Claymore内核挖ETH时的内核开发费 ...

  10. c#小知识点总结

    实例化实例化就是将抽象变为具体,只说猫是抽象的,但是我要具体到一只单独的老猫A,那么这只猫被实例化.实例化就是一个抽象变具体的过程,也可以说为声明一个变量声明变量. int a=1,这其实也是一个实例 ...