zhebinhu / zhebinhu.github.io

个人博客
http://huzb.me
2 stars 0 forks source link

Spring AOP源码浅析——筛选合适的通知器 | huzb的小书斋 #84

Open zhebinhu opened 5 years ago

zhebinhu commented 5 years ago

http://huzb.me/2019/03/19/Spring-AOP%E6%BA%90%E7%A0%81%E6%B5%85%E6%9E%90%E2%80%94%E2%80%94%E7%AD%9B%E9%80%89%E5%90%88%E9%80%82%E7%9A%84%E9%80%9A%E7%9F%A5%E5%99%A8/

上篇我们讲过了 AOP 的概念和使用方式。这篇就开始进行源码分析。 1、AOP 入口分析上篇我们提到过,AOP 在 Spring 中是通过后置处理器的方式织入到对应的 bean 中的。负责这部分逻辑的是后置处理器 AnnotationAwareAspectJAutoProxyCreator ,但由于 AnnotationAwareAspectJAutoProxyCreator 中没有覆写父类的 p