Spring读源码系列之AOP--09---aop源码流程一把拿下

x33g5p2x  于2022-04-27 转载在 Spring  
字(30.1k)|赞(0)|评价(0)|浏览(686)

引言

上一篇文章已经详细介绍了两种aop自动代理创建器的导入流程分析,此时我们已经知道了自动代理创建器注册到容器中的流程,下面我们来探究一下,自动代理创建器对具体bean创建代理的流程,这里测试环境还是用上一篇中开头给出的测试环境。

Spring读源码系列之AOP–08–aop执行完整源码流程之自动代理创建器导入的两种方式

源码分析

首先我们需要知道AnnotationAwareAspectJAutoProxyCreator是一个bean的后置处理器(Spring读源码系列之AOP–07—aop自动代理创建器(拿下AOP的最后一击))

这里对有关自动代理的后置处理器相关回调接口被调用时机不清楚的,看上面给出的那篇文章链接

对bean初始化源码流程不清楚的,去看我之前写的bean初始化流程源码分析

AbstractAutoProxyCreator#postProcessAfterInitialization–bean初始化方法被调用后,尝试进行代理创建

AbstractAutoProxyCreator是AnnotationAwareAspectJAutoProxyCreator的父类

postProcessAfterInitialization方法在该类中进行实现

  1. @Override
  2. public Object postProcessAfterInitialization(@Nullable Object bean, String beanName) {
  3. if (bean != null) {
  4. Object cacheKey = getCacheKey(bean.getClass(), beanName);
  5. //如果当前bean还没有通过getEarlyBeanReference方法提早暴露出去,那么尝试进行代理
  6. //因为getEarlyBeanReference方法会尝试对提早暴露的bean进行代理,同样也是调用wrapIfNecessary方法
  7. if (this.earlyProxyReferences.remove(cacheKey) != bean) {
  8. return wrapIfNecessary(bean, beanName, cacheKey);
  9. }
  10. }
  11. return bean;
  12. }

AbstractAutoProxyCreator#wrapIfNecessary–是否需要对当前传入的bean记性代理

  1. protected Object wrapIfNecessary(Object bean, String beanName, Object cacheKey) {
  2. //如果已经处理过,不需要代理,是基础类,是OriginalInstance,那么当前bean都应该直接跳过,不做任何操作
  3. if (StringUtils.hasLength(beanName) && this.targetSourcedBeans.contains(beanName)) {
  4. return bean;
  5. }
  6. if (Boolean.FALSE.equals(this.advisedBeans.get(cacheKey))) {
  7. return bean;
  8. }
  9. if (isInfrastructureClass(bean.getClass()) || shouldSkip(bean.getClass(), beanName)) {
  10. this.advisedBeans.put(cacheKey, Boolean.FALSE);
  11. return bean;
  12. }
  13. // Create proxy if we have advice.
  14. //获取到可以应用到当前bean上的拦截器链
  15. //getAdvicesAndAdvisorsForBean在AbstractAutoProxyCreator类中为抽象方法,留给不同的子类去实现
  16. Object[] specificInterceptors = getAdvicesAndAdvisorsForBean(bean.getClass(), beanName, null);
  17. //DO_NOT_PROXY代表一个空的Object[],如果不为空,说明需要代理
  18. if (specificInterceptors != DO_NOT_PROXY) {
  19. this.advisedBeans.put(cacheKey, Boolean.TRUE);
  20. //创建代理对象,然后放入缓存,然后返回代理对象
  21. Object proxy = createProxy(
  22. bean.getClass(), beanName, specificInterceptors, new SingletonTargetSource(bean));
  23. this.proxyTypes.put(cacheKey, proxy.getClass());
  24. return proxy;
  25. }
  26. this.advisedBeans.put(cacheKey, Boolean.FALSE);
  27. return bean;
  28. }
AbstractAdvisorAutoProxyCreator#getAdvicesAndAdvisorsForBean–获取可以应用到当前bean上的拦截器链
  1. protected Object[] getAdvicesAndAdvisorsForBean(
  2. Class<?> beanClass, String beanName, @Nullable TargetSource targetSource) {
  3. //findEligibleAdvisors--寻找可用于当前bean上的增强器
  4. List<Advisor> advisors = findEligibleAdvisors(beanClass, beanName);
  5. if (advisors.isEmpty()) {
  6. return DO_NOT_PROXY;
  7. }
  8. return advisors.toArray();
  9. }
AbstractAdvisorAutoProxyCreator#findEligibleAdvisors–获取可以应用到当前bean上的拦截器链
  1. protected List<Advisor> findEligibleAdvisors(Class<?> beanClass, String beanName) {
  2. //获取容器中所有Advisor类型bean
  3. List<Advisor> candidateAdvisors = findCandidateAdvisors();
  4. //进行过滤,找到能应用到当前bean上的拦截器链
  5. List<Advisor> eligibleAdvisors = findAdvisorsThatCanApply(candidateAdvisors, beanClass, beanName);
  6. //钩子方法,子类实现用来新增拦截器到拦截器链中
  7. extendAdvisors(eligibleAdvisors);
  8. if (!eligibleAdvisors.isEmpty()) {
  9. //对拦截器链中的拦截器进行排序操作
  10. eligibleAdvisors = sortAdvisors(eligibleAdvisors);
  11. }
  12. return eligibleAdvisors;
  13. }
AnnotationAwareAspectJAutoProxyCreator#findCandidateAdvisors—从当前容器中寻找到所有可用的增强器
  1. protected List<Advisor> findCandidateAdvisors() {
  2. // Add all the Spring advisors found according to superclass rules.
  3. //父类借助advisorRetrievalHelper去容器中获取所有可用的增强器
  4. List<Advisor> advisors = super.findCandidateAdvisors();
  5. // Build Advisors for all AspectJ aspects in the bean factory.
  6. if (this.aspectJAdvisorsBuilder != null) {
  7. advisors.addAll(this.aspectJAdvisorsBuilder.buildAspectJAdvisors());
  8. }
  9. return advisors;
  10. }
AbstractAdvisorAutoProxyCreator#findCandidateAdvisors–从容器中获取所有可用的增强器
  1. protected List<Advisor> findCandidateAdvisors() {
  2. Assert.state(this.advisorRetrievalHelper != null, "No BeanFactoryAdvisorRetrievalHelper available");
  3. return this.advisorRetrievalHelper.findAdvisorBeans();
  4. }

advisorRetrievalHelper的findAdvisorBeans方法

  1. public List<Advisor> findAdvisorBeans() {
  2. // Determine list of advisor bean names, if not cached already.
  3. String[] advisorNames = this.cachedAdvisorBeanNames;
  4. if (advisorNames == null) {
  5. // Do not initialize FactoryBeans here: We need to leave all regular beans
  6. // uninitialized to let the auto-proxy creator apply to them!
  7. //从容器中拿取到所有类型为Advisor的bean
  8. advisorNames = BeanFactoryUtils.beanNamesForTypeIncludingAncestors(
  9. this.beanFactory, Advisor.class, true, false);
  10. this.cachedAdvisorBeanNames = advisorNames;
  11. }
  12. if (advisorNames.length == 0) {
  13. return new ArrayList<>();
  14. }
  15. List<Advisor> advisors = new ArrayList<>();
  16. for (String name : advisorNames) {
  17. //isEligibleBean通过正则匹配之类的方法,先过滤掉一批增强器
  18. if (isEligibleBean(name)) {
  19. //跳过正在创建的增强器
  20. if (this.beanFactory.isCurrentlyInCreation(name)) {
  21. if (logger.isTraceEnabled()) {
  22. logger.trace("Skipping currently created advisor '" + name + "'");
  23. }
  24. }
  25. else {
  26. try {
  27. //加入增强器集合,然后返回
  28. advisors.add(this.beanFactory.getBean(name, Advisor.class));
  29. }
  30. ...
  31. }
  32. }
  33. }
  34. return advisors;
  35. }
BeanFactoryAspectJAdvisorsBuilder#buildAspectJAdvisors—将所有标注了@AspectJ注解类进行解析,解析为一组advisor增强器链返回
  1. public List<Advisor> buildAspectJAdvisors() {
  2. List<String> aspectNames = this.aspectBeanNames;
  3. //如果此时aspectBeanNames为空
  4. //下面会去容器中解析出所有标注了AspectJ注解的切面类,然后将其解析为一组增强器链
  5. if (aspectNames == null) {
  6. synchronized (this) {
  7. aspectNames = this.aspectBeanNames;
  8. if (aspectNames == null) {
  9. List<Advisor> advisors = new ArrayList<>();
  10. aspectNames = new ArrayList<>();
  11. //拿到容器中所有的bean
  12. String[] beanNames = BeanFactoryUtils.beanNamesForTypeIncludingAncestors(
  13. this.beanFactory, Object.class, true, false);
  14. for (String beanName : beanNames) {
  15. //通过正则表达式之类的匹配式,先过滤掉一批不符合的bean
  16. if (!isEligibleBean(beanName)) {
  17. continue;
  18. }
  19. // We must be careful not to instantiate beans eagerly as in this case they
  20. // would be cached by the Spring container but would not have been weaved.
  21. Class<?> beanType = this.beanFactory.getType(beanName, false);
  22. if (beanType == null) {
  23. continue;
  24. }
  25. //当前bean的上要标注了AspectJ注解才可以
  26. if (this.advisorFactory.isAspect(beanType)) {
  27. aspectNames.add(beanName);
  28. //为当前标注了AspectJ注解的切面类构造一个切面类元数据信息
  29. AspectMetadata amd = new AspectMetadata(beanType, beanName);
  30. //如果切面是单例的,这里的单例指的是@AspectJ("singleton"),默认都是单例的
  31. if (amd.getAjType().getPerClause().getKind() == PerClauseKind.SINGLETON) {
  32. //创建生成切面对象的工厂
  33. MetadataAwareAspectInstanceFactory factory =
  34. new BeanFactoryAspectInstanceFactory(this.beanFactory, beanName);
  35. //AspectJAdvisorFactory可以根据MetadataAwareAspectInstanceFactory
  36. //获取到当前切面解析后的一组增强器链
  37. List<Advisor> classAdvisors = this.advisorFactory.getAdvisors(factory);
  38. //将解析后的结果进行保存,即当前切面已经关联了一组增强器链
  39. if (this.beanFactory.isSingleton(beanName)) {
  40. this.advisorsCache.put(beanName, classAdvisors);
  41. }
  42. else {
  43. //如果当前切面是多例的--这里的多例指的是spring层面的多例
  44. this.aspectFactoryCache.put(beanName, factory);
  45. }
  46. advisors.addAll(classAdvisors);
  47. }
  48. else {
  49. //如果是Aspectj层面的其他类型的切面,例如perthis,pertarget,这里不多讲
  50. // Per target or per this.
  51. if (this.beanFactory.isSingleton(beanName)) {
  52. throw new IllegalArgumentException("Bean with name '" + beanName +
  53. "' is a singleton, but aspect instantiation model is not singleton");
  54. }
  55. MetadataAwareAspectInstanceFactory factory =
  56. new PrototypeAspectInstanceFactory(this.beanFactory, beanName);
  57. this.aspectFactoryCache.put(beanName, factory);
  58. advisors.addAll(this.advisorFactory.getAdvisors(factory));
  59. }
  60. }
  61. }
  62. this.aspectBeanNames = aspectNames;
  63. //返回当前切面类解析后得到的一组增强器链
  64. return advisors;
  65. }
  66. }
  67. }
  68. if (aspectNames.isEmpty()) {
  69. return Collections.emptyList();
  70. }
  71. //如果第二次来,此时aspectBeanNames不为null,那么尝试从缓存中获取,如果缓存中获取不到,再通过AspectJAdvisorFactory去获取
  72. List<Advisor> advisors = new ArrayList<>();
  73. for (String aspectName : aspectNames) {
  74. List<Advisor> cachedAdvisors = this.advisorsCache.get(aspectName);
  75. if (cachedAdvisors != null) {
  76. advisors.addAll(cachedAdvisors);
  77. }
  78. else {
  79. MetadataAwareAspectInstanceFactory factory = this.aspectFactoryCache.get(aspectName);
  80. advisors.addAll(this.advisorFactory.getAdvisors(factory));
  81. }
  82. }
  83. return advisors;
  84. }
ReflectiveAspectJAdvisorFactory#getAdvisors—根据切面工厂,将切面解析为一组advisor增强器链后返回
  1. @Override
  2. public List<Advisor> getAdvisors(MetadataAwareAspectInstanceFactory aspectInstanceFactory) {
  3. //拿到切面工厂中保存的切面的class和切面name
  4. Class<?> aspectClass = aspectInstanceFactory.getAspectMetadata().getAspectClass();
  5. String aspectName = aspectInstanceFactory.getAspectMetadata().getAspectName();
  6. //对切面类进行校验,如果父类上也有AspectJ注解,但是父类不是抽象的,那么会抛出异常,并且当前切面必须是默认的单例--aspectj层面的
  7. validate(aspectClass);
  8. // We need to wrap the MetadataAwareAspectInstanceFactory with a decorator
  9. // so that it will only instantiate once.
  10. //防止对切面的重复实例化---还有一个特点是切面只要使用到的时候,才会创建,即懒加载策略
  11. MetadataAwareAspectInstanceFactory lazySingletonAspectInstanceFactory =
  12. new LazySingletonAspectInstanceFactoryDecorator(aspectInstanceFactory);
  13. List<Advisor> advisors = new ArrayList<>();
  14. //getAdvisorMethods--获取切面类中所有方法,除了被Pointcut注解标注的方法,并且这所有方法还包括其父类继承链的,继承的接口方法
  15. for (Method method : getAdvisorMethods(aspectClass)) {
  16. // Prior to Spring Framework 5.2.7, advisors.size() was supplied as the declarationOrderInAspect
  17. // to getAdvisor(...) to represent the "current position" in the declared methods list.
  18. // However, since Java 7 the "current position" is not valid since the JDK no longer
  19. // returns declared methods in the order in which they are declared in the source code.
  20. // Thus, we now hard code the declarationOrderInAspect to 0 for all advice methods
  21. // discovered via reflection in order to support reliable advice ordering across JVM launches.
  22. // Specifically, a value of 0 aligns with the default value used in
  23. // AspectJPrecedenceComparator.getAspectDeclarationOrder(Advisor).
  24. //将该adviceMethod构造为一个Adv返回isor
  25. Advisor advisor = getAdvisor(method, lazySingletonAspectInstanceFactory, 0, aspectName);
  26. if (advisor != null) {
  27. advisors.add(advisor);
  28. }
  29. }
  30. // If it's a per target aspect, emit the dummy instantiating aspect.
  31. //如果当前aspectJ不是signleton的,那么做相关处理
  32. //默认都是单例的(不是spring层面的,是aspectj层面的)
  33. if (!advisors.isEmpty() && lazySingletonAspectInstanceFactory.getAspectMetadata().isLazilyInstantiated()) {
  34. Advisor instantiationAdvisor = new SyntheticInstantiationAdvisor(lazySingletonAspectInstanceFactory);
  35. advisors.add(0, instantiationAdvisor);
  36. }
  37. // Find introduction fields.
  38. //@DeclareParents注解的处理,引介增强处理--这里先不讲,感兴趣可以自己去了解一下
  39. for (Field field : aspectClass.getDeclaredFields()) {
  40. Advisor advisor = getDeclareParentsAdvisor(field);
  41. if (advisor != null) {
  42. advisors.add(advisor);
  43. }
  44. }
  45. return advisors;
  46. }
ReflectiveAspectJAdvisorFactory#getAdvisorMethods-获取切面类所有方法,除了@PointCut标注的方法
  1. private List<Method> getAdvisorMethods(Class<?> aspectClass) {
  2. List<Method> methods = new ArrayList<>();
  3. //adviceMethodFilter会过滤掉被pointCut标注的方法
  4. //methods::add向methods集合存入当前切面类除了被过滤掉以外的方法
  5. ReflectionUtils.doWithMethods(aspectClass, methods::add, adviceMethodFilter);
  6. if (methods.size() > 1) {
  7. methods.sort(adviceMethodComparator);
  8. }
  9. return methods;
  10. }

adviceMethodFilter比较简单:

  1. // Exclude @Pointcut methods
  2. private static final MethodFilter adviceMethodFilter = ReflectionUtils.USER_DECLARED_METHODS
  3. .and(method -> (AnnotationUtils.getAnnotation(method, Pointcut.class) == null));

ReflectionUtils的doWithMethods方法

  1. public static void doWithMethods(Class<?> clazz, MethodCallback mc, @Nullable MethodFilter mf) {
  2. // Keep backing up the inheritance hierarchy.
  3. Method[] methods = getDeclaredMethods(clazz, false);
  4. for (Method method : methods) {
  5. //过滤器进行过滤
  6. if (mf != null && !mf.matches(method)) {
  7. continue;
  8. }
  9. try {
  10. //mc.dowith操作就是将合法的方法加入集合
  11. mc.doWith(method);
  12. }
  13. catch (IllegalAccessException ex) {
  14. throw new IllegalStateException("Not allowed to access method '" + method.getName() + "': " + ex);
  15. }
  16. }
  17. //还会沿着继承链一之去找,直到找到Object为止
  18. if (clazz.getSuperclass() != null && (mf != USER_DECLARED_METHODS || clazz.getSuperclass() != Object.class)) {
  19. doWithMethods(clazz.getSuperclass(), mc, mf);
  20. }
  21. //继承的接口里面的方法也不会放过
  22. else if (clazz.isInterface()) {
  23. for (Class<?> superIfc : clazz.getInterfaces()) {
  24. doWithMethods(superIfc, mc, mf);
  25. }
  26. }
  27. }
ReflectiveAspectJAdvisorFactory#getAdvisor–如果传入的方法上面标注了增强器相关注解,就转换为对应的增强器,否则返回null
  1. public Advisor getAdvisor(Method candidateAdviceMethod, MetadataAwareAspectInstanceFactory aspectInstanceFactory,
  2. int declarationOrderInAspect, String aspectName) {
  3. //对切面类进行校验,如果父类上也有AspectJ注解,但是父类不是抽象的,那么会抛出异常,并且当前切面必须是默认的单例--aspectj层面的
  4. validate(aspectInstanceFactory.getAspectMetadata().getAspectClass());
  5. //尝试去获取当前方法上的pointcut,如果获取不到,说明当前方法不是增强器方法
  6. //这里不是去获取pointcut注解内的切点表达式,pointcut注解标注的方法在 getAdvisorMethods中就已经被过滤掉了
  7. //这里获取到的是@Before("切点表达式")或者@Before("excution(* *.*.*.(..)")
  8. AspectJExpressionPointcut expressionPointcut = getPointcut(
  9. candidateAdviceMethod, aspectInstanceFactory.getAspectMetadata().getAspectClass());
  10. //返回的 AspectJExpressionPointcut 为null,说明当前方法上没有标注相关增强器注解
  11. if (expressionPointcut == null) {
  12. return null;
  13. }
  14. //构造一个aspectJ相关的advisor返回
  15. return new InstantiationModelAwarePointcutAdvisorImpl(
  16. //切点表达式 advice方法
  17. expressionPointcut, candidateAdviceMethod,
  18. //当前ReflectiveAspectJAdvisorFactory工厂
  19. this, aspectInstanceFactory,
  20. //固定为0 切面名
  21. declarationOrderInAspect, aspectName);
  22. }
ReflectiveAspectJAdvisorFactory#getPointcut–尝试从传入的方法上,获取切点表达式的信息
  1. @Nullable
  2. private AspectJExpressionPointcut getPointcut(Method candidateAdviceMethod, Class<?> candidateAspectClass) {
  3. //寻找到方法上第一个出现的增强器注解,如@Before,@After...
  4. AspectJAnnotation<?> aspectJAnnotation =
  5. AbstractAspectJAdvisorFactory.findAspectJAnnotationOnMethod(candidateAdviceMethod);
  6. //没找到,返回null,说明当前方法不是增强器方法
  7. if (aspectJAnnotation == null) {
  8. return null;
  9. }
  10. //构造一个AspectJExpressionPointcut
  11. AspectJExpressionPointcut ajexp =
  12. new AspectJExpressionPointcut(candidateAspectClass, new String[0], new Class<?>[0]);
  13. //设置AspectJExpressionPointcut的切点表达式,即@Before("切点表达式")
  14. //当然括号里面可以直接是切点表达式,也可以是一个方法名(),该方法上标注的pointcut注解中写了真正的切点表达式
  15. //所以一般情况下,这里拿到的切点表达式都长这个样子: point()
  16. ajexp.setExpression(aspectJAnnotation.getPointcutExpression());
  17. //设置该AspectJExpressionPointcut 关联的IOC容器
  18. if (this.beanFactory != null) {
  19. ajexp.setBeanFactory(this.beanFactory);
  20. }
  21. return ajexp;
  22. }

AbstractAspectJAdvisorFactory.findAspectJAnnotationOnMethod方法

查找并返回给定方法的第一个 AspectJ 注解(无论如何应该只有一个…)。

  1. private static final Class<?>[] ASPECTJ_ANNOTATION_CLASSES = new Class<?>[] {
  2. Pointcut.class, Around.class, Before.class, After.class, AfterReturning.class, AfterThrowing.class};
  1. protected static AspectJAnnotation<?> findAspectJAnnotationOnMethod(Method method) {
  2. for (Class<?> clazz : ASPECTJ_ANNOTATION_CLASSES) {
  3. AspectJAnnotation<?> foundAnnotation = findAnnotation(method, (Class<Annotation>) clazz);
  4. if (foundAnnotation != null) {
  5. return foundAnnotation;
  6. }
  7. }
  8. return null;
  9. }
InstantiationModelAwarePointcutAdvisorImpl–通过解析得到的pointcut和对应的增强方法,构建一个默认的AspectJ的advisor
  1. public InstantiationModelAwarePointcutAdvisorImpl(AspectJExpressionPointcut declaredPointcut,
  2. Method aspectJAdviceMethod, AspectJAdvisorFactory aspectJAdvisorFactory,
  3. MetadataAwareAspectInstanceFactory aspectInstanceFactory, int declarationOrder, String aspectName) {
  4. //pointcut
  5. this.declaredPointcut = declaredPointcut;
  6. //切面类型
  7. this.declaringClass = aspectJAdviceMethod.getDeclaringClass();
  8. //增强方法名
  9. this.methodName = aspectJAdviceMethod.getName();
  10. //增强方法的参数类型数组
  11. this.parameterTypes = aspectJAdviceMethod.getParameterTypes();
  12. //增强方法
  13. this.aspectJAdviceMethod = aspectJAdviceMethod;
  14. //解析切面类,创建advisor的工厂
  15. this.aspectJAdvisorFactory = aspectJAdvisorFactory;
  16. //生产切面的工厂
  17. this.aspectInstanceFactory = aspectInstanceFactory;
  18. //固定为0
  19. this.declarationOrder = declarationOrder;
  20. //切面名
  21. this.aspectName = aspectName;
  22. //如果切面是懒加载的
  23. //isLazilyInstantiated--->return (isPerThisOrPerTarget() || isPerTypeWithin());
  24. //因此这里先不用管,默认切面都是单例的
  25. if (aspectInstanceFactory.getAspectMetadata().isLazilyInstantiated()) {
  26. // Static part of the pointcut is a lazy type.
  27. Pointcut preInstantiationPointcut = Pointcuts.union(
  28. aspectInstanceFactory.getAspectMetadata().getPerClausePointcut(), this.declaredPointcut);
  29. // Make it dynamic: must mutate from pre-instantiation to post-instantiation state.
  30. // If it's not a dynamic pointcut, it may be optimized out
  31. // by the Spring AOP infrastructure after the first evaluation.
  32. this.pointcut = new PerTargetInstantiationModelPointcut(
  33. this.declaredPointcut, preInstantiationPointcut, aspectInstanceFactory);
  34. this.lazy = true;
  35. }
  36. else {
  37. //切面是单例的,这里的单例是aspectj层面的
  38. // A singleton aspect.
  39. this.pointcut = this.declaredPointcut;
  40. this.lazy = false;
  41. //根据declaredPointcut实例化得到对应的advice
  42. this.instantiatedAdvice = instantiateAdvice(this.declaredPointcut);
  43. }
  44. }
InstantiationModelAwarePointcutAdvisorImpl#instantiateAdvice-根据pointcut实现化一个advice
  1. private Advice instantiateAdvice(AspectJExpressionPointcut pointcut) {
  2. //内部还是靠aspectJAdvisorFactory来完成
  3. Advice advice = this.aspectJAdvisorFactory.getAdvice(this.aspectJAdviceMethod, pointcut,
  4. this.aspectInstanceFactory, this.declarationOrder, this.aspectName);
  5. return (advice != null ? advice : EMPTY_ADVICE);
  6. }
ReflectiveAspectJAdvisorFactory#getAdvice-根据advicemethod和pointcut生成对应的adivce
  1. @Override
  2. @Nullable
  3. public Advice getAdvice(Method candidateAdviceMethod, AspectJExpressionPointcut expressionPointcut,
  4. MetadataAwareAspectInstanceFactory aspectInstanceFactory, int declarationOrder, String aspectName) {
  5. //拿到切面类型
  6. Class<?> candidateAspectClass = aspectInstanceFactory.getAspectMetadata().getAspectClass();
  7. validate(candidateAspectClass);
  8. //拿到当前advicemethod上标注的增强器注解
  9. AspectJAnnotation<?> aspectJAnnotation =
  10. AbstractAspectJAdvisorFactory.findAspectJAnnotationOnMethod(candidateAdviceMethod);
  11. //为空直接返回--说明不是一个增强器方法
  12. if (aspectJAnnotation == null) {
  13. return null;
  14. }
  15. // If we get here, we know we have an AspectJ method.
  16. // Check that it's an AspectJ-annotated class
  17. if (!isAspect(candidateAspectClass)) {
  18. throw new AopConfigException("Advice must be declared inside an aspect type: " +
  19. "Offending method '" + candidateAdviceMethod + "' in class [" +
  20. candidateAspectClass.getName() + "]");
  21. }
  22. if (logger.isDebugEnabled()) {
  23. logger.debug("Found AspectJ method: " + candidateAdviceMethod);
  24. }
  25. AbstractAspectJAdvice springAdvice;
  26. //根据注解类型进行判断,构造不同的advice
  27. switch (aspectJAnnotation.getAnnotationType()) {
  28. //pointcut注解跳过
  29. case AtPointcut:
  30. if (logger.isDebugEnabled()) {
  31. logger.debug("Processing pointcut '" + candidateAdviceMethod.getName() + "'");
  32. }
  33. return null;
  34. //增强方法上标注的是around注解
  35. case AtAround:
  36. //构造AspectJAroundAdvice返回
  37. springAdvice = new AspectJAroundAdvice(
  38. candidateAdviceMethod, expressionPointcut, aspectInstanceFactory);
  39. break;
  40. //before注解
  41. case AtBefore:
  42. springAdvice = new AspectJMethodBeforeAdvice(
  43. candidateAdviceMethod, expressionPointcut, aspectInstanceFactory);
  44. break;
  45. //after注解
  46. case AtAfter:
  47. springAdvice = new AspectJAfterAdvice(
  48. candidateAdviceMethod, expressionPointcut, aspectInstanceFactory);
  49. break;
  50. //afterreturning注解
  51. case AtAfterReturning:
  52. springAdvice = new AspectJAfterReturningAdvice(
  53. candidateAdviceMethod, expressionPointcut, aspectInstanceFactory);
  54. AfterReturning afterReturningAnnotation = (AfterReturning) aspectJAnnotation.getAnnotation();
  55. //可以指定接收的返回变量名或者变量类型
  56. if (StringUtils.hasText(afterReturningAnnotation.returning())) {
  57. springAdvice.setReturningName(afterReturningAnnotation.returning());
  58. }
  59. break;
  60. //afterreturning注解
  61. case AtAfterThrowing:
  62. springAdvice = new AspectJAfterThrowingAdvice(
  63. candidateAdviceMethod, expressionPointcut, aspectInstanceFactory);
  64. AfterThrowing afterThrowingAnnotation = (AfterThrowing) aspectJAnnotation.getAnnotation();
  65. if (StringUtils.hasText(afterThrowingAnnotation.throwing())) {
  66. //可以指定接收的异常名或异常类型
  67. springAdvice.setThrowingName(afterThrowingAnnotation.throwing());
  68. }
  69. break;
  70. default:
  71. throw new UnsupportedOperationException(
  72. "Unsupported advice type on method: " + candidateAdviceMethod);
  73. }
  74. // Now to configure the advice...
  75. //设置切面名
  76. springAdvice.setAspectName(aspectName);
  77. //固定为0
  78. springAdvice.setDeclarationOrder(declarationOrder);
  79. //获取增强方法的参数名数组
  80. String[] argNames = this.parameterNameDiscoverer.getParameterNames(candidateAdviceMethod);
  81. if (argNames != null) {
  82. //设置到advice中
  83. springAdvice.setArgumentNamesFromStringArray(argNames);
  84. }
  85. //计算参数绑定--感兴趣的可以研究一下--这里也可以看出joinpoint只能放在advice方法第一个参数位置
  86. springAdvice.calculateArgumentBindings();
  87. return springAdvice;
  88. }

小憩

上面大部分代码流程都是在找所有可用的增强器候选集合,即findCandidateAdvisors

  1. protected List<Advisor> findEligibleAdvisors(Class<?> beanClass, String beanName) {
  2. List<Advisor> candidateAdvisors = findCandidateAdvisors();
  3. List<Advisor> eligibleAdvisors = findAdvisorsThatCanApply(candidateAdvisors, beanClass, beanName);
  4. extendAdvisors(eligibleAdvisors);
  5. if (!eligibleAdvisors.isEmpty()) {
  6. eligibleAdvisors = sortAdvisors(eligibleAdvisors);
  7. }
  8. return eligibleAdvisors;
  9. }

下面既然已经拿到了所有可能会用到的候选增强器集合,那么下面就是判断这些增强器能否应用到当前被拦截的bean上,如果不能,说明当前bean不需要被代理

AbstractAdvisorAutoProxyCreator#findAdvisorsThatCanApply–判断传入的候选增强器集合能否应用到当前bean上
  1. protected List<Advisor> findAdvisorsThatCanApply(
  2. List<Advisor> candidateAdvisors, Class<?> beanClass, String beanName) {
  3. ProxyCreationContext.setCurrentProxiedBeanName(beanName);
  4. try {
  5. //利用aoputils这个工具类来判断
  6. return AopUtils.findAdvisorsThatCanApply(candidateAdvisors, beanClass);
  7. }
  8. finally {
  9. ProxyCreationContext.setCurrentProxiedBeanName(null);
  10. }
  11. }
AopUtils.findAdvisorsThatCanApply—真正干活的方法
  1. public static List<Advisor> findAdvisorsThatCanApply(List<Advisor> candidateAdvisors, Class<?> clazz) {
  2. if (candidateAdvisors.isEmpty()) {
  3. return candidateAdvisors;
  4. }
  5. List<Advisor> eligibleAdvisors = new ArrayList<>();
  6. for (Advisor candidate : candidateAdvisors) {
  7. //优先处理IntroductionAdvisor ,然后通过canApply方法进行最终判决
  8. if (candidate instanceof IntroductionAdvisor && canApply(candidate, clazz)) {
  9. eligibleAdvisors.add(candidate);
  10. }
  11. }
  12. boolean hasIntroductions = !eligibleAdvisors.isEmpty();
  13. for (Advisor candidate : candidateAdvisors) {
  14. //IntroductionAdvisor上面处理过了
  15. if (candidate instanceof IntroductionAdvisor) {
  16. // already processed
  17. continue;
  18. }
  19. //其他类型的Advisor 进行最终判决
  20. if (canApply(candidate, clazz, hasIntroductions)) {
  21. eligibleAdvisors.add(candidate);
  22. }
  23. }
  24. //返回最终适合作用于当前类上的增强器链集合
  25. return eligibleAdvisors;
  26. }

canapply方法:

  1. public static boolean canApply(Advisor advisor, Class<?> targetClass, boolean hasIntroductions) {
  2. //如果是IntroductionAdvisor,就直接进行类过滤即可
  3. if (advisor instanceof IntroductionAdvisor) {
  4. return ((IntroductionAdvisor) advisor).getClassFilter().matches(targetClass);
  5. }
  6. else if (advisor instanceof PointcutAdvisor) {
  7. PointcutAdvisor pca = (PointcutAdvisor) advisor;
  8. //调用重载方法进行判断,因为此时需要方法过滤
  9. return canApply(pca.getPointcut(), targetClass, hasIntroductions);
  10. }
  11. else {
  12. // It doesn't have a pointcut so we assume it applies.
  13. return true;
  14. }
  15. }

canApply(Pointcut pc, Class<?> targetClass, boolean hasIntroductions)重载方法

  1. public static boolean canApply(Pointcut pc, Class<?> targetClass, boolean hasIntroductions) {
  2. Assert.notNull(pc, "Pointcut must not be null");
  3. //先进行类过滤
  4. if (!pc.getClassFilter().matches(targetClass)) {
  5. return false;
  6. }
  7. //再进行方法过滤---如果AspectJExpressionPointcut,那么这里返回的是他自己
  8. //因为他实现了IntroductionAwareMethodMatcher接口
  9. MethodMatcher methodMatcher = pc.getMethodMatcher();
  10. if (methodMatcher == MethodMatcher.TRUE) {
  11. // No need to iterate the methods if we're matching any method anyway...
  12. return true;
  13. }
  14. //AspetJ会使用IntroductionAwareMethodMatcher,通过切点表达式进行过滤匹配
  15. IntroductionAwareMethodMatcher introductionAwareMethodMatcher = null;
  16. if (methodMatcher instanceof IntroductionAwareMethodMatcher) {
  17. introductionAwareMethodMatcher = (IntroductionAwareMethodMatcher) methodMatcher;
  18. }
  19. Set<Class<?>> classes = new LinkedHashSet<>();
  20. //如果当前类不是是jdk代理类了
  21. if (!Proxy.isProxyClass(targetClass)) {
  22. //那么再判断是否是cglib代理类,如果是拿到其superClass,即目标对象类型
  23. classes.add(ClassUtils.getUserClass(targetClass));
  24. }
  25. //上面可以确保拿到的是目标对象类型,而不是代理对象的class类型
  26. //下面再将目标对象实现的接口全部加入集合中去
  27. classes.addAll(ClassUtils.getAllInterfacesForClassAsSet(targetClass));
  28. for (Class<?> clazz : classes) {
  29. //遍历该集合,获取每个class里面的所有方法
  30. Method[] methods = ReflectionUtils.getAllDeclaredMethods(clazz);
  31. for (Method method : methods) {
  32. //如果introductionAwareMethodMatcher 不为空,说明Pointcut为AspectJExpressionPointcut
  33. //挨个方法,调用introductionAwareMethodMatcher 的matches方法进行匹配
  34. //如果introductionAwareMethodMatcher 为null,那么为普通pointCut,调用methodMatcher.matches方法进行匹配
  35. if (introductionAwareMethodMatcher != null ?
  36. introductionAwareMethodMatcher.matches(method, targetClass, hasIntroductions) :
  37. methodMatcher.matches(method, targetClass)) {
  38. return true;
  39. }
  40. }
  41. }
  42. return false;
  43. }
introductionAwareMethodMatcher.matches—切点为AspectJExpressionPointcut时,matches方法需要特殊处理
  1. @Override
  2. public boolean matches(Method method, Class<?> targetClass, boolean hasIntroductions) {
  3. //获取切点表达式---默认在BeanFactoryAspectJAdvisorsBuilder#buildAspectJAdvisors方法中就已经全部解析好了
  4. obtainPointcutExpression();
  5. //获取目标方法和切点表达式的匹配结果---这个过程比较复杂,这里就不多展开了,核心原理就是获取到切点表达式
  6. //然后通过切点表达式判断当前放是否会被切入,结果封装在了 ShadowMatch 中
  7. ShadowMatch shadowMatch = getTargetShadowMatch(method, targetClass);
  8. // Special handling for this, target, @this, @target, @annotation
  9. // in Spring - we can optimize since we know we have exactly this class,
  10. // and there will never be matching subclass at runtime.
  11. //一般要么是alwaysMatches表示切入成功,要么是neverMatches表示切入失败
  12. if (shadowMatch.alwaysMatches()) {
  13. return true;
  14. }
  15. else if (shadowMatch.neverMatches()) {
  16. return false;
  17. }
  18. else {
  19. //一般很少使用: 因为当我们在切点表达式用到一些动态参数,需要运行时进行判断时,才会产生不确定性
  20. // the maybe case
  21. if (hasIntroductions) {
  22. return true;
  23. }
  24. // A match test returned maybe - if there are any subtype sensitive variables
  25. // involved in the test (this, target, at_this, at_target, at_annotation) then
  26. // we say this is not a match as in Spring there will never be a different
  27. // runtime subtype.
  28. RuntimeTestWalker walker = getRuntimeTestWalker(shadowMatch);
  29. return (!walker.testsSubtypeSensitiveVars() || walker.testTargetInstanceOfResidue(targetClass));
  30. }
  31. }

小憩

到这里,我们已经走完了wrapIfNecessary一大半的方法,advisors增强器链已经创建出来了,下一步就是创建代理了

  1. protected Object wrapIfNecessary(Object bean, String beanName, Object cacheKey) {
  2. if (StringUtils.hasLength(beanName) && this.targetSourcedBeans.contains(beanName)) {
  3. return bean;
  4. }
  5. if (Boolean.FALSE.equals(this.advisedBeans.get(cacheKey))) {
  6. return bean;
  7. }
  8. if (isInfrastructureClass(bean.getClass()) || shouldSkip(bean.getClass(), beanName)) {
  9. this.advisedBeans.put(cacheKey, Boolean.FALSE);
  10. return bean;
  11. }
  12. // Create proxy if we have advice.
  13. Object[] specificInterceptors = getAdvicesAndAdvisorsForBean(bean.getClass(), beanName, null);
  14. if (specificInterceptors != DO_NOT_PROXY) {
  15. this.advisedBeans.put(cacheKey, Boolean.TRUE);
  16. //创建代理
  17. Object proxy = createProxy(
  18. //目标对象类型,目标对象名,增强器链,SingletonTargetSource
  19. bean.getClass(), beanName, specificInterceptors, new SingletonTargetSource(bean));
  20. this.proxyTypes.put(cacheKey, proxy.getClass());
  21. return proxy;
  22. }
  23. this.advisedBeans.put(cacheKey, Boolean.FALSE);
  24. //需要代理,返回代理类,否则返回原样的bean
  25. return bean;
  26. }
AbstractAutoProxyCreator#createProxy—创建代理对象
  1. //创建代理对象
  2. protected Object createProxy(Class<?> beanClass, @Nullable String beanName,
  3. @Nullable Object[] specificInterceptors, TargetSource targetSource) {
  4. if (this.beanFactory instanceof ConfigurableListableBeanFactory) {
  5. AutoProxyUtils.exposeTargetClass((ConfigurableListableBeanFactory) this.beanFactory, beanName, beanClass);
  6. }
  7. //每个代理类都对应一个ProxyFactory
  8. ProxyFactory proxyFactory = new ProxyFactory();
  9. //这里copy的是ProxyConfig的配置,两者都继承了该类
  10. proxyFactory.copyFrom(this);
  11. //isProxyTargetClass为true,说明要用cglib代理
  12. if (proxyFactory.isProxyTargetClass()) {
  13. // Explicit handling of JDK proxy targets (for introduction advice scenarios)
  14. //如果当前bean是jdk的代理类
  15. if (Proxy.isProxyClass(beanClass)) {
  16. // Must allow for introductions; can't just set interfaces to the proxy's interfaces only.
  17. for (Class<?> ifc : beanClass.getInterfaces()) {
  18. //拿到jdk代理类继承的所有接口,添加进当前proxyFactory
  19. proxyFactory.addInterface(ifc);
  20. }
  21. }
  22. }
  23. else {
  24. // No proxyTargetClass flag enforced, let's apply our default checks...
  25. //shouldProxyTargetClass返回值取决于:Boolean.TRUE.equals(bd.getAttribute(PRESERVE_TARGET_CLASS_ATTRIBUTE));
  26. //即当前bean定义中的PRESERVE_TARGET_CLASS_ATTRIBUTE是否存在,并且对应的值是否为true,如果为true,则采用cglib进行代理
  27. if (shouldProxyTargetClass(beanClass, beanName)) {
  28. proxyFactory.setProxyTargetClass(true);
  29. }
  30. else {
  31. //进行常规判断,该方法属于父类ProxyProcessorSupport
  32. //通过对目标对象实现的接口进行分析,判断是采用jdk还是cglib进行动态代理
  33. evaluateProxyInterfaces(beanClass, proxyFactory);
  34. }
  35. }
  36. //拦截器和targetSource设置进proxyFactory
  37. Advisor[] advisors = buildAdvisors(beanName, specificInterceptors);
  38. proxyFactory.addAdvisors(advisors);
  39. proxyFactory.setTargetSource(targetSource);
  40. //空实现,子类可以进行定制操作
  41. customizeProxyFactory(proxyFactory);
  42. proxyFactory.setFrozen(this.freezeProxy);
  43. if (advisorsPreFiltered()) {
  44. proxyFactory.setPreFiltered(true);
  45. }
  46. // Use original ClassLoader if bean class not locally loaded in overriding class loader
  47. ClassLoader classLoader = getProxyClassLoader();
  48. if (classLoader instanceof SmartClassLoader && classLoader != beanClass.getClassLoader()) {
  49. classLoader = ((SmartClassLoader) classLoader).getOriginalClassLoader();
  50. }
  51. //创建代理对象
  52. return proxyFactory.getProxy(classLoader);

buildAdvisors方法:

  1. /**
  2. * Determine the advisors for the given bean, including the specific interceptors
  3. * as well as the common interceptor, all adapted to the Advisor interface.
  4. */
  5. protected Advisor[] buildAdvisors(@Nullable String beanName, @Nullable Object[] specificInterceptors) {
  6. // Handle prototypes correctly...
  7. //commonInterceptors是公共拦截器,即会应用到所有被该自动创建器创建的代理对象上
  8. //这里解析的是用户设置的commonInterceptors的beanNames数组,默认为空
  9. //resolveInterceptorNames就是拿着beanName去IOC容器中找出对应的bean,再通过适配器转换为统一的advisor后返回
  10. Advisor[] commonInterceptors = resolveInterceptorNames();
  11. List<Object> allInterceptors = new ArrayList<>();
  12. if (specificInterceptors != null) {
  13. //可以应用到当前目标对象上的拦截器链加入集合
  14. if (specificInterceptors.length > 0) {
  15. // specificInterceptors may equal PROXY_WITHOUT_ADDITIONAL_INTERCEPTORS
  16. allInterceptors.addAll(Arrays.asList(specificInterceptors));
  17. }
  18. //公共拦截器链加入集合
  19. if (commonInterceptors.length > 0) {
  20. if (this.applyCommonInterceptorsFirst) {
  21. allInterceptors.addAll(0, Arrays.asList(commonInterceptors));
  22. }
  23. else {
  24. allInterceptors.addAll(Arrays.asList(commonInterceptors));
  25. }
  26. }
  27. }
  28. if (logger.isTraceEnabled()) {
  29. int nrOfCommonInterceptors = commonInterceptors.length;
  30. int nrOfSpecificInterceptors = (specificInterceptors != null ? specificInterceptors.length : 0);
  31. logger.trace("Creating implicit proxy for bean '" + beanName + "' with " + nrOfCommonInterceptors +
  32. " common interceptors and " + nrOfSpecificInterceptors + " specific interceptors");
  33. }
  34. //进行适配操作
  35. Advisor[] advisors = new Advisor[allInterceptors.size()];
  36. for (int i = 0; i < allInterceptors.size(); i++) {
  37. advisors[i] = this.advisorAdapterRegistry.wrap(allInterceptors.get(i));
  38. }
  39. return advisors;
  40. }
ProxyFactory#getProxy—获取代理对象
  1. public Object getProxy(@Nullable ClassLoader classLoader) {
  2. return createAopProxy().getProxy(classLoader);
  3. }
ProxyCreatorSupport#createAopProxy—创建代理对象,不过返回的是包裹代理对象的AopProxy
  1. protected final synchronized AopProxy createAopProxy() {
  2. if (!this.active) {
  3. activate();
  4. }
  5. //返回的是DefaultAopProxyFactory,这里我们直接看DefaultAopProxyFactory的createAopProxy方法
  6. return getAopProxyFactory().createAopProxy(this);
  7. }
DefaultAopProxyFactory#createAopProxy—选择jdk还是cglib完成动态代理的地方
  1. @Override
  2. public AopProxy createAopProxy(AdvisedSupport config) throws AopConfigException {
  3. if (!NativeDetector.inNativeImage() &&
  4. //如果proxyConfig的Optimize或者proxyTargetClass或者当前类没有实现任何接口,那么都将采用cglib完成代理
  5. (config.isOptimize() || config.isProxyTargetClass() || hasNoUserSuppliedProxyInterfaces(config))) {
  6. Class<?> targetClass = config.getTargetClass();
  7. if (targetClass == null) {
  8. throw new AopConfigException("TargetSource cannot determine target class: " +
  9. "Either an interface or a target is required for proxy creation.");
  10. }
  11. //但是,如果目标对象是个接口,或者目标对象是jdk代理类,那么还是使用jdk完成动态代理
  12. if (targetClass.isInterface() || Proxy.isProxyClass(targetClass)) {
  13. return new JdkDynamicAopProxy(config);
  14. }
  15. //cglib完成动态代理
  16. return new ObjenesisCglibAopProxy(config);
  17. }
  18. else {
  19. //jdk完成动态代理
  20. return new JdkDynamicAopProxy(config);
  21. }
  22. }
  23. /**
  24. * Determine whether the supplied {@link AdvisedSupport} has only the
  25. * {@link org.springframework.aop.SpringProxy} interface specified
  26. * (or no proxy interfaces specified at all).
  27. */
  28. private boolean hasNoUserSuppliedProxyInterfaces(AdvisedSupport config) {
  29. Class<?>[] ifcs = config.getProxiedInterfaces();
  30. return (ifcs.length == 0 || (ifcs.length == 1 && SpringProxy.class.isAssignableFrom(ifcs[0])));
  31. }
AopProxy#getProxy–返回代理对象

这里就不继续深入挖掘了,因为还需要对JdkDynamicAopProxy和ObjenesisCglibAopProxy区分讨论,感兴趣的可以看我之前写的文章,链接如下:

Spring读源码系列之AOP–06—AopProxy===>spring使用jdk和cglib生成代理对象的终极奥义

小结

到此,一个代理对象被创建的完整流程就已经讲完了,这也是aop在spring中的灵魂流程

相关文章

目录