7Spring 源码学习 ~ 默认标签的解析之嵌入式 beans 标签的解析
Posted 戴泽supp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7Spring 源码学习 ~ 默认标签的解析之嵌入式 beans 标签的解析相关的知识,希望对你有一定的参考价值。
嵌入式 beans 标签的解析
一、嵌入式 beans 标签的使用
嵌入式 beans 标签,它非常类似于 import 标签所提供的的功能,可以把它看做嵌在配置文件中的另一个配置文件。
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd">
<beans>
<bean id="testBean" class="com.luo.spring.guides.helloworld.common.TestBean"/>
</beans>
</beans>
测试:
package com.luo.spring.guides.helloworld.beans;
import com.luo.spring.guides.helloworld.common.TestBean;
import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;
/**
* @author : archer
* @date : Created in 2022/10/25 18:48
* @description :
*/
public class Main
public static void main(String[] args)
ApplicationContext bf = new ClassPathXmlApplicationContext("beans/beansTest.xml");
TestBean test = (TestBean) bf.getBean("testBean");
System.out.println(test);
二、嵌入式 beans 标签的解析
对于嵌入式 beans 标签的解析,没有太多可以讲,它就是重新走了一遍配置文件的解析过程。
private void parseDefaultElement(Element ele, BeanDefinitionParserDelegate delegate)
if (delegate.nodeNameEquals(ele, IMPORT_ELEMENT))
importBeanDefinitionResource(ele);
else if (delegate.nodeNameEquals(ele, ALIAS_ELEMENT))
processAliasRegistration(ele);
else if (delegate.nodeNameEquals(ele, BEAN_ELEMENT))
processBeanDefinition(ele, delegate);
else if (delegate.nodeNameEquals(ele, NESTED_BEANS_ELEMENT))
// recurse
doRegisterBeanDefinitions(ele);
DefaultBeanDefinitionDocumentReader#doRegisterBeanDefinitions
函数就是最开始解析配置文件的入口。
以上是关于7Spring 源码学习 ~ 默认标签的解析之嵌入式 beans 标签的解析的主要内容,如果未能解决你的问题,请参考以下文章
3Spring 源码学习 ~ 默认标签的解析之 Bean 标签解析
4Spring 源码学习 ~ 默认标签的解析之 Bean 标签注册