Spring Aop 总结

前提

  1. 熟悉Spring Bean生命周期

  1. 熟悉Spring Aop 分析过程

Spring Aop 核心逻辑是AbstractAutoProxyCreator.

重点方法

postProcessBeforeInstantiation

  1. 遍历IOC容器所有BeanDefinition

  1. 查找是AspectJ 配置类的BeanDefinition。

  1. 缓存其的增强通知Advice。

postProcessAfterInitialization

  1. 检查是否需要为目标bean创建代理。

  1. 按target-proxy-class 配置创建代理。

流程图

执行代理方法流程

  1. 创建责任链为调用的方法。

List<Object> chain = this.advised.getInterceptorsAndDynamicInterceptionAdvice(method, targetClass);
  1. 创建MethodInvocation执行责任链。

MethodInvocation invocation =
                        new ReflectiveMethodInvocation(proxy, target, method, args, targetClass, chain);
                // Proceed to the joinpoint through the interceptor chain.
                retVal = invocation.proceed();

重点相关类

MethodInvocation

类图
总结

MethodInvocation 实现了Joinpoint 接口。 proceed调用连接点方法。

接口MethodInterceptor

唯一方法invoke :理解成执行连接点(MethodInvocation)

    Object invoke(@Nonnull MethodInvocation invocation) throws Throwable;

ReflectiveMethodInvation

proxy

代理对象

target

目标对象

Method

执行的方法

arguments

方法参数

targetClass

目标类Class

interceptorAndDynamicMethodMatchers

切面通知调用链

执行流程具体逻辑

收集MethodInterceptor

执行责任链

若责任链执行结束,则调用连接点的方法。

源码
    public Object proceed() throws Throwable {
        // We start with an index of -1 and increment early.

        if (this.currentInterceptorIndex == this.interceptorsAndDynamicMethodMatchers.size() - 1) {
            return invokeJoinpoint();
        }

        Object interceptorOrInterceptionAdvice =
                this.interceptorsAndDynamicMethodMatchers.get(++this.currentInterceptorIndex);
            return ((MethodInterceptor) interceptorOrInterceptionAdvice).invoke(this);
        }
    }

流程图展示责任链执行过程

形象理解AOP执行流程

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

jiguansheng

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值