- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Spring的初始化和XML解析的实现由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
前言 。
spring是什么?它是一个应用程序框架,为应用程序的开发提供强大的支持,例如对事务处理和持久化的支持等;它也是一个bean容器,管理bean对象的整个生命周期,维护bean的各种存在状态,例如bean对象的实例化、销毁、bean的单实例和多实例状态等.
spring作为java发展史上不可忽视的存在,说他重新定义了java也不为过。它功能强大,着实为日常开发提供了大大的便利。表面越简单的东西,背后越复杂。 从本章节开始,我们一起分析spring的源码,看它到底是怎么样来实现我们常说常用的诸如ioc、annotation、aop、事务等功能的.
1、spring的入口 。
在我们的项目中,web.xml必不可少,其中就定义了spring的监听器.
1
2
3
4
5
|
<listener>
<listener-
class
>
org.springframework.web.context.contextloaderlistener
</listener-
class
>
</listener>
|
我们来看contextloaderlistener类,可以看到它实现了servletcontextlistener接口, contextinitialized就是spring初始化的入口方法.
spring还有一个入口,叫做org.springframework.web.servlet.dispatcherservlet,它们之间是父子容器的关系,最终都会调用到同一个方法org.springframework.context.support.abstractapplicationcontext.refresh().
2、初始化 。
spring的初始化第一步就是要加载配置文件,然后解析里面的配置项.
ok,我们来到xmlwebapplicationcontext类的loadbeandefinitions方法.
1
2
3
4
5
6
7
8
|
protected
void
loadbeandefinitions(xmlbeandefinitionreader reader)
throws
ioexception {
string[] configlocations = getconfiglocations();
if
(configlocations !=
null
) {
for
(string configlocation : configlocations) {
reader.loadbeandefinitions(configlocation);
}
}
}
|
可以看到,configlocations是一个数组,它获取的就是配置文件。在笔者的项目中,只有一个配置文件,名字是applicationcontext.xml。下一步就是通过loadbeandefinitions这个方法解析这个配置文件.
3、解析xml配置 。
首先把一个配置文件封装成一个resource对象,然后获取resource对象的输入流,转换成inputsource对象,最后解析成document对象。下面代码只保留了主要部分.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
public
int
loadbeandefinitions(string location, set<resource> actualresources)
throws
beandefinitionstoreexception {
resourceloader resourceloader = getresourceloader();
if
(resourceloader
instanceof
resourcepatternresolver) {
// resource pattern matching available.
try
{
//这里的location就是配置文件-applicationcontext.xml,转成resource对象
resource[] resources=resourceloader).getresources(location);
//获取resources对象的输入流 再转成jdk的inputsource对象,最后解析成document
inputstream inputstream = resources.getinputstream();
inputsource inputsource =
new
inputsource(inputstream);
document doc = doloaddocument(inputsource, resource);
}
catch
(ioexception ex) {
throw
new
beandefinitionstoreexception(
"could not resolve bean definition resource pattern ["
+ location +
"]"
, ex);
}
}
}
|
applicationcontext.xml配置文件解析成document对象,它的root节点信息如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
[
[#text:],
[context:component-scan:
null
],
[#text:],
[bean:
null
],
[#text:],
[bean:
null
],
[#text:],
[bean:
null
],
[#text:],
[bean:
null
],
[#text:],
[#comment: 指定了表现层资源的前缀和后缀
viewclass:jstlview表示jsp模板页面需要使用jstl标签库
prefix 和suffix:查找视图页面的前缀和后缀,比如传进来的逻辑视图名为hello,则该该
jsp视图页面应该存放在“web-inf/jsp/hello.jsp”],
[#text:],
[bean:
null
],
[#text: ]
]
|
4、加载bean信息 。
上一步我们看到spring已经把applicationcontext.xml这个配置文件解析成了document对象,接下来就是关键的一步。先看源码 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
//这里拿到的是document对象的根节点,根节点信息参考上图
protected
void
parsebeandefinitions(element root, beandefinitionparserdelegate delegate) {
if
(delegate.isdefaultnamespace(root)) {
nodelist nl = root.getchildnodes();
for
(
int
i =
0
; i < nl.getlength(); i++) {
node node = nl.item(i);
if
(node
instanceof
element) {
element ele = (element) node;
//这里有两个分支。
//一个是处理默认的节点(import、alias、bean、beans)
//一个是处理自定义的节点(context:component-scan)
if
(delegate.isdefaultnamespace(ele)) {
parsedefaultelement(ele, delegate);
}
else
{
delegate.parsecustomelement(ele);
}
}
}
}
else
{
delegate.parsecustomelement(root);
}
}
|
4.1 component-scan的解析 。
首先定位到自定义解析方法delegate.parsecustomelement(ele),
最终调用了org.springframework.context.annotation.componentscanbeandefinitionparser.parse(element element, parsercontext parsercontext),不过它是怎么调用到这个类的呢?说起来就比较有意思了.
我们先来看spring里面的一个配置文件,/meta-inf/spring.handlers 。
http\://www.springframework.org/schema/context=org.springframework.context.config.contextnamespacehandler http\://www.springframework.org/schema/jee=org.springframework.ejb.config.jeenamespacehandler http\://www.springframework.org/schema/lang=org.springframework.scripting.config.langnamespacehandler http\://www.springframework.org/schema/task=org.springframework.scheduling.config.tasknamespacehandler http\://www.springframework.org/schema/cache=org.springframework.cache.config.cachenamespacehandler 。
这里面配置了不同标签的处理类,比如context标签处理类就是contextnamespacehandler,然后通过反射实例化这个处理类,调用它的init()方法。init()方法里面它又注册了一堆处理类,其中就有我们很感兴趣的component-scan.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
public
namespacehandler resolve(string namespaceuri) {
//handlermappings里有个方法loadallproperties(),获取spring所有的配置项
map<string, object> handlermappings = gethandlermappings();
object handlerorclassname = handlermappings.get(namespaceuri);
if
(handlerorclassname ==
null
) {
return
null
;
}
else
if
(handlerorclassname
instanceof
namespacehandler) {
return
(namespacehandler) handlerorclassname;
}
else
{
string classname = (string) handlerorclassname;
try
{
//以context:component-scan举例
//这里拿到的classname就是org.springframework.context.config.contextnamespacehandler
//通过反射,实例化这个contextnamespacehandler,然后调用init方法
class
<?> handlerclass = classutils.forname(classname,
this
.classloader);
namespacehandler namespacehandler = beanutils.instantiateclass(handlerclass);
namespacehandler.init();
handlermappings.put(namespaceuri, namespacehandler);
return
namespacehandler;
}
}
}
public
void
init() {
registerbeandefinitionparser(
"annotation-config"
,
new
annotationconfigbeandefinitionparser());
registerbeandefinitionparser(
"component-scan"
,
new
componentscanbeandefinitionparser());
//...未完
}
|
最终spring就可以通过component-scan这个标签,拿到componentscanbeandefinitionparser类,调用它的parse()方法.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
public
beandefinition parse(element element, parsercontext parsercontext) {
//获取包扫描路径,对应配置文件中的base-package="com.viewscenes.netsupervisor"
string basepackage = element.getattribute(base_package_attribute);
basepackage = parsercontext.getreadercontext().getenvironment().
resolveplaceholders(basepackage);
//这里可能有多个包路径,分割成数组
string[] basepackages = stringutils.tokenizetostringarray(basepackage,
configurableapplicationcontext.config_location_delimiters);
/**
* configurescanner 配置扫描器。
* scanner.doscan 扫描执行
* registercomponents 这里重点是对registercomponents的支持
*
* @return
*/
classpathbeandefinitionscanner scanner = configurescanner(parsercontext, element);
set<beandefinitionholder> beandefinitions = scanner.doscan(basepackages);
registercomponents(parsercontext.getreadercontext(), beandefinitions, element);
return
null
;
}
|
4.1.1 configurescanner 配置扫描器 。
这里面重点就是注册了默认的过滤器。use-default-filters,默认值是true,如果配置文件配置了此属性的值为false,有些注解就加不进来,到下一步扫描的时候就注册不了bean.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
protected
void
registerdefaultfilters() {
//这个就是配置的use-default-filters,如果配置了false。那么下面的
// component、managedbean、named注解都不会被扫描到
if
(usedefaultfilters) {
this
.includefilters.add(
new
annotationtypefilter(component.
class
));
classloader cl = classpathscanningcandidatecomponentprovider.
class
.getclassloader();
try
{
this
.includefilters.add(
new
annotationtypefilter(
((
class
<?
extends
annotation>) classutils.forname(
"javax.annotation.managedbean"
, cl)),
false
));
logger.debug("jsr-
250
'javax.annotation.managedbean'
found and supported
for
component scanning");
}
catch
(classnotfoundexception ex) {
// jsr-250 1.1 api (as included in java ee 6) not available - simply skip.
}
//...未完
}
}
|
4.1.2 doscan扫描 。
doscan分为三个步骤.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
protected
set<beandefinitionholder> doscan(string... basepackages) {
set<beandefinitionholder> beandefinitions =
new
linkedhashset<beandefinitionholder>();
for
(string basepackage : basepackages) {
//findcandidatecomponents方法扫描class文件,判断component注解,转成beandefinition对象返回。
//值得注意的是,component不止是@component,还有
//@controller、@service、@repository,因为在这三个注解上面还有个@component。
//这就相当于它们都是component的子注解。
set<beandefinition> candidates = findcandidatecomponents(basepackage);
for
(beandefinition candidate : candidates) {
scopemetadata scopemetadata =
this
.scopemetadataresolver.
resolvescopemetadata(candidate);
//设置属性,没有配置的都是默认值
candidate.setscope(scopemetadata.getscopename());
candidate.setxxx(scopemetadata.getxxxname());
string beanname =
this
.beannamegenerator.generatebeanname(candidate,
this
.registry);
//registerbeandefinition方法 注册beandefinition,等同于下面两句
//this.beandefinitionmap.put(beanname, beandefinition);
//this.beandefinitionnames.add(beanname);
registerbeandefinition(definitionholder,
this
.registry);
}
}
return
beandefinitions;
}
|
最后整个方法返回的就是beandefinition对象的set集合,以两个controller为例.
1
2
3
4
5
|
[
generic bean:
class
[com.viewscenes.netsupervisor.controller.indexcontroller]; scope=;
abstract
=
false
; lazyinit=
false
; autowiremode=
0
; dependencycheck=
0
; autowirecandidate=
true
; primary=
false
; factorybeanname=
null
; factorymethodname=
null
; initmethodname=
null
; destroymethodname=
null
; defined in file [d:\apache-tomcat-
7.0
.
78
\webapps\springmvc_dubbo_producer\web-inf\classes\com\viewscenes\netsupervisor\controller\indexcontroller.
class
],
generic bean:
class
[com.viewscenes.netsupervisor.controller.usercontroller]; scope=;
abstract
=
false
; lazyinit=
false
; autowiremode=
0
; dependencycheck=
0
; autowirecandidate=
true
; primary=
false
; factorybeanname=
null
; factorymethodname=
null
; initmethodname=
null
; destroymethodname=
null
; defined in file [d:\apache-tomcat-
7.0
.
78
\webapps\springmvc_dubbo_producer\web-inf\classes\com\viewscenes\netsupervisor\controller\usercontroller.
class
]
]
|
4.1.3 对annotation-config的支持 。
我们知道,在spring配置文件有个配置是context:annotation-config 但如果配置了context:component-scan 就不必再配置config,这是因为在解析component-scan的时候已经默认添加了annotation-config的支持,除非你手动设置了annotation-config="false",不过这可不太妙,因为在ioc的时候就没办法支持@autowired等注解了.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
protected
void
registercomponents(xmlreadercontext readercontext,
set<beandefinitionholder> beandefinitions, element element) {
boolean
annotationconfig =
true
;
if
(element.hasattribute(annotation_config_attribute)) {
annotationconfig =
boolean
.valueof(element.getattribute(annotation_config_attribute));
}
if
(annotationconfig) {
//判断annotation-config属性的值
set<beandefinitionholder> beandefs =
new
linkedhashset<beandefinitionholder>(
4
);
if
(!registry.containsbeandefinition(autowired_annotation_processor_bean_name)) {
rootbeandefinition def =
new
rootbeandefinition(autowiredannotationbeanpostprocessor.
class
);
beandefs.add(registerpostprocessor(registry, def, autowired_annotation_processor_bean_name));
}
if
(!registry.containsbeandefinition(required_annotation_processor_bean_name)) {
rootbeandefinition def =
new
rootbeandefinition(requiredannotationbeanpostprocessor.
class
);
beandefs.add(registerpostprocessor(registry, def, required_annotation_processor_bean_name));
}
if
(jsr250present && !registry.containsbeandefinition(common_annotation_processor_bean_name)) {
rootbeandefinition def =
new
rootbeandefinition(commonannotationbeanpostprocessor.
class
);
beandefs.add(registerpostprocessor(registry, def, common_annotation_processor_bean_name));
}
......未完
}
}
|
4.2 bean标签的解析 。
bean标签的解析,就是默认的处理方法.
获取bean标签的id,并且把beanname赋值为id,设置别名。新建abstractbeandefinition对象,通过反射设置beanclass,解析property属性名称和值.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
public
beandefinitionholder parsebeandefinitionelement(element ele, beandefinition containingbean) {
//获取bean_id
string id = ele.getattribute(id_attribute);
string beanname = id;
abstractbeandefinition beandefinition =
parsebeandefinitionelement(ele, beanname, containingbean);
string[] aliasesarray = stringutils.tostringarray(aliases);
//最后返回已经包含了beanname、class对象和一系列方法的beandefinition对象
return
new
beandefinitionholder(beandefinition, beanname, aliasesarray);
}
public
abstractbeandefinition parsebeandefinitionelement(element ele,
string beanname, beandefinition containingbean) {
string classname = ele.getattribute(class_attribute).trim();
try
{
//根据classname反射设置setbeanclass和setbeanclassname
abstractbeandefinition bd = createbeandefinition(classname, parent);
//设置默认方法 setscope、setlazyinit、setautowiremode...
parsebeandefinitionattributes(ele, beanname, containingbean, bd);
//设置property属性 <bean><property name="id" value="1001"></property></bean>
parsepropertyelements(ele, bd);
return
bd;
}
return
null
;
}
|
注册beandefinition对象,和component-scan扫描的bean注册一样。向容器中填充对象.
不管是xml配置的bean,还是通过component-scan扫描注册的bean它们最后都是殊途同归的,会转换成一个beandefinition对象。记录着这个bean对象的属性和方法,最后都注册到容器中,等待在实例化和ioc的时候遍历它们.
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我.
原文链接:https://www.jianshu.com/p/baa1d48e7f57 。
最后此篇关于Spring的初始化和XML解析的实现的文章就讲到这里了,如果你想了解更多关于Spring的初始化和XML解析的实现的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
正如标题中所问,我有两个如下结构的 XML 文件 A.xml //here I want to include B.xml
我有一个 xml 文件。根据我的要求,我需要更新空标签,例如我需要更改 to .是否可以像那样更改标签.. 谢谢... 最佳答案 var xmlString=" "; var properStri
我有这样简单的 XML: Song Playing 09:41:18 Frederic Delius Violin Son
在我的工作中,我们有自己的 XML 类来构建 DOM,但我不确定应该如何处理连续的空格? 例如 Hello World 当它被读入 DOM 时,文本节点应该包含 Hello 和 World
我有以下 2 个 xml 文件,我必须通过比较 wd:Task_Name_ID 和 TaskID 的 XML 文件 2。 例如,Main XML File-1 wd:Task_Name_ID 具有以下
我在 Rails 应用程序中有一个 XML View ,需要从另一个文件插入 XML 以进行测试。 我想说“构建器,只需盲目地填充这个字符串,因为它已经是 xml”,但我在文档中看不到这样做的任何内容
我正在重建一些 XML 提要,因此我正在研究何时使用元素以及何时使用带有 XML 的属性。 一些网站说“数据在元素中,元数据在属性中。” 那么,两者有什么区别呢? 让我们以 W3Schools 为例:
在同一个文档中有两个 XML 声明是否是格式正确的 XML? hello 我相信不是,但是我找不到支持我的消息来源。 来自 Extensible Markup Language
我需要在包装器 XML 文档中嵌入任意(语法上有效的)XML 文档。嵌入式文档被视为纯文本,在解析包装文档时不需要可解析。 我知道“CDATA trick”,但如果内部 XML 文档本身包含 CDAT
XML 解析器和 XML 处理器是两个不同的东西吗?他们是两个不同的工作吗? 最佳答案 XML 解析器和 XML 处理器是一样的。它不适用于其他语言。 XML 是通用数据标记语言。解析 XML 文件已
我使用这个 perl 代码从一个文件中读取 XML,然后写入另一个文件(我的完整脚本有添加属性的代码): #!usr/bin/perl -w use strict; use XML::DOM; use
我正在编写一个我了解有限的历史脚本。 对象 A 的类型为 system.xml.xmlelement,我需要将其转换为类型 system.xml.xmldocument 以与对象 B 进行比较(类型
我有以下两个 XML 文件: 文件1 101 102 103 501 502 503
我有以下两个 XML 文件: 文件1 101 102 103 501 502 503
我有一个案例,其中一个 xml 作为输入,另一个 xml 作为输出:我可以选择使用 XSL 和通过 JAXB 进行 Unmarshalling 编码。性能方面,有什么真正的区别吗? 最佳答案 首先,程
我有包含 XML 的 XML,我想使用 JAXB 解析它 qwqweqwezxcasdasd eee 解析器 public static NotificationRequest parse(Strin
xml: mario de2f15d014d40b93578d255e6221fd60 Mario F 23 maria maria
尝试更新 xml 文件数组时出现以下错误。 代码片段: File dir = new File("c:\\XML"); File[] files = dir.listFiles(new Filenam
我怎样才能完成这样的事情: PS /home/nicholas/powershell> PS /home/nicholas/powershell> $date=(Get-Date | ConvertT
我在从 xml 文件中删除节点时遇到一些困难。我发现很多其他人通过各种方式在 powershell 中执行此操作的示例,下面的代码似乎与我见过的许多其他示例相同,但我没有得到所需的行为。 我的目标是将
我是一名优秀的程序员,十分优秀!