Dubbo|基础知识之自定义标签解析流程分析(续)

这篇博客深入剖析了Dubbo自定义标签的解析过程。从通过ClassPathXmlApplicationContext加载XML配置文件开始,详细解释了如何从dubbo:application等自定义标签到BeanDefinitionParserDelegate的解析步骤。解析过程中,首先获取XML的namespace,然后根据namespace找到对应的handler,最后利用handler解析XML元素,生成BeanDefinition对象。DubboBeanDefinitionParser的parse方法是解析的核心,用于根据XML结点创建bean对象。
摘要由CSDN通过智能技术生成

前面讲到利用XML配置文件示范Dubbo的使用,比如服务提供者的provider.xml配置文件内容为:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:dubbo="http://dubbo.apache.org/schema/dubbo"
       xsi:schemaLocation="http://www.springframework.org/schema/beans
       http://www.springframework.org/schema/beans/spring-beans.xsd
       http://dubbo.apache.org/schema/dubbo
       http:dubbo.apache.org/schema/dubbo/dubbo.xsd">
  
    <dubbo:application name="test-xml-provider" owner="programmer" organization="dubbox"/>
    <dubbo:registry address="zookeeper://10.19.50.225:2181"/>
    <dubbo:protocol name="dubbo" port="20890" />
    <dubbo:service interface="com.starry.testxmlprovider.service.TestDubbo" ref="dubboService" protocol="dubbo" />
    <bean id="dubboService" class="com.starry.testxmlprovider.service.impl.TestDubboImpl"/>
</beans>

可以看到Dubbo自定义标签:dubbo:application,dubbo:registry,dubbo:protocol等等,前面我们已经分析过Dubbo标签的定义,并且说明自定义标签的使用和解析过程;本篇博文将针对dubbo自定义标签的解析作一个深入的剖析。

定义好provider.xml配置文件后,通过ClassPathXmlApplicationContext加载xml配置文件。下面给出调用链:

org.springframework.context.support.ClassPathXmlApplicationContext#ClassPathXmlApplicationContext(java.lang.String)
org.springframework.context.support.ClassPathXmlApplicationContext#ClassPathXmlApplicationContext(java.lang.String[], boolean, org.springframework.context.ApplicationContext)
org.springframework.context.support.AbstractApplicationContext#refresh
org.springframework.context.support.AbstractApplicationContext#obtainFreshBeanFactory
org.springframework.context.support.AbstractRefreshableApplicationContext#refreshBeanFactory
org.springframework.context.support.AbstractXmlApplicationContext#loadBeanDefinitions(org.springframework.beans.factory.support.DefaultListableBeanFactory)
org.springframework.context.support.AbstractXmlApplicationContext#loadBeanDefinitions(org.springframework.beans.factory.xml.XmlBeanDefinitionReader)
org.springframework.beans.factory.support.AbstractBeanDefinitionReader#loadBeanDefinitions(java.lang.String...)
org.springframework.beans.factory.support.AbstractBeanDefinitionReader#loadBeanDefinitions(java.lang.String)
org.springframework.beans.factory.support.AbstractBeanDefinitionReader#
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值