【DUBBO学习】dubbo spring配置文件是如何转换为bean的

spring xml的解析过程就是在获取FactoryBean的过程的

  1. org.springframework.context.support.AbstractApplicationContext#refreshBeanFactory
    【DUBBO学习】dubbo spring配置文件是如何转换为bean的_第1张图片
  2. org.springframework.context.support.AbstractXmlApplicationContext#loadBeanDefinitions 加载BeanDefinition
    【DUBBO学习】dubbo spring配置文件是如何转换为bean的_第2张图片
  3. 针对xml配置,org.springframework.context.support.AbstractXmlApplicationContext#loadBeanDefinitions
    【DUBBO学习】dubbo spring配置文件是如何转换为bean的_第3张图片
  4. BeanDefinitionReader org.springframework.beans.factory.support.AbstractBeanDefinitionReader#loadBeanDefinitions
    【DUBBO学习】dubbo spring配置文件是如何转换为bean的_第4张图片
    5. org.springframework.beans.factory.xml.XmlBeanDefinitionReader#loadBeanDefinitions
    【DUBBO学习】dubbo spring配置文件是如何转换为bean的_第5张图片
    6. org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader#registerBeanDefinitions
    【DUBBO学习】dubbo spring配置文件是如何转换为bean的_第6张图片
    7. org.springframework.beans.factory.xml.BeanDefinitionParserDelegate#parseCustomElement
    【DUBBO学习】dubbo spring配置文件是如何转换为bean的_第7张图片
    8. dubbo 是通过 spring.handlers的方式来指定对应的Handler
http\://dubbo.apache.org/schema/dubbo=org.apache.dubbo.config.spring.schema.DubboNamespaceHandler
http\://code.alibabatech.com/schema/dubbo=org.apache.dubbo.config.spring.schema.DubboNamespaceHandler 
  • 获取所有有的handler

【DUBBO学习】dubbo spring配置文件是如何转换为bean的_第8张图片

  • DubboHandler的init 过程
    【DUBBO学习】dubbo spring配置文件是如何转换为bean的_第9张图片

9. 真正的xml解析过程
【DUBBO学习】dubbo spring配置文件是如何转换为bean的_第10张图片

你可能感兴趣的:(dubbo)