52、Spring5.x源码之旅五十二解析配置类加载bean定义过程三

  • 图得留着,可以随时来看
  • processImports处理Import注解
    • getImports
    • collectImports
    • ConfigurationClassParser的processImports
      • ImportSelector类型处理
      • ImportBeanDefinitionRegistrar处理
      • 一般组件类型处理
  • 处理ImportResource注解

图得留着,可以随时来看

*

processImports处理Import注解

*

getImports

首先递归获取所有的import类:
*

collectImports

这个就是递归,因为注解里面可能还有import注解。

	private void collectImports(SourceClass sourceClass, Set<SourceClass> imports, Set<SourceClass> visited)
			throws IOException {
   
     

		if (visited.add(sourceClass)) {
   
     //是否存在了,不存在就继续递归Import注解
			for (SourceClass annotation : sourceClass.getAnnotations()) {
   
     
				String annName = annotation.getMetadata().getClassName();
				if (!annName.equals(Import.class.getName())) {
   
     //不是Import注解就递归下去,直到把所有import注解收集完
					collectImports(annotation, imports, visited);
				}
			}//import注解的值全部添加到imports
			imports.addAll(sourceClass.getAnnotationAttributes(Import.class.getName(), "value"));
		}
	}

ConfigurationClassParser的processImports

ImportSelector类型处理

首先是看是不是ImportSelector类型,或者该子类的,进行处理,先进行实例化,设置属性,如果是DeferredImportSelector类型的,就是等待所有配置类都处理完了才会进行处理,否则的话就直接执行selectImports获取要import的类,递归处理processImports
*
首先会进行实例化,然后调用invokeAwareMethods方法进行属性设置:
*
处理各种接口方法回调:
*
然后调用自定义的MyImportSelectorselectImports方法,这里会把有import注解的类的注解信息传进来,也就是MergeConfig的注解元数据。
*
我把注解元数据的类型信息打印出来了:
*
所以这里有我自定义的com.ww.annotation.MyEnableAnnotation注解,所以会返回拥有com.ww.pojo.ImportSelectorBean的字符串数组,这里记得selectImports不能返回null,否则后面处理会报错的。最后新的import类又会进行递归import处理:
*

ImportBeanDefinitionRegistrar处理

也是先进行实例化,然后调用invokeAwareMethods方法进行属性设置,最后会添加到ConfigurationClassimportBeanDefinitionRegistrars集合里,后面加载bean定义的时候用。
*
*

一般组件类型处理

最后就是一般的组件注解的类型:
*
注册到ImportStackimports中,后面加载bean定义的时候会用到:
*
然后再进行processConfigurationClass递归处理,因为可能还有其他注解。

处理ImportResource注解

获取资源路径和bean定义读取器类,然后添加到importedResources中。
*
*
剩下的下次说吧。

好了,今天就到这里了,希望对学习理解有帮助,大神看见勿喷,仅为自己的学习理解,能力有限,请多包涵。