摘要:相信很多人和我一样,在编写Spring或者Maven或者其他需要用到XML文档的程序时,通常都是将这些XML文档头拷贝过来,并没有理解其中元素(比如xmlns,xmlns:xsi,xsi:schemaLocation)的真正含义,不知道哪些元素是多余的,也不知道为什么要加那些元素。
相信很多人和我一样,在编写Spring或者Maven或者其他需要用到XML文档的程序时,通常都是将这些XML文档头拷贝过来,并没有理解其中元素(比如xmlns,xmlns:xsi,xsi:schemaLocation)的真正含义,不知道哪些元素是多余的,也不知道为什么要加那些元素。这样当有时候网上Copy的XML头有错的时候自己却不知道怎么下手。我也是这样的,于是今天花了点时间好好的理解了一下这些元素及其用法,现整理与此,在此谢谢各位前辈的经验,如有总结的不对或者不好的地方,欢迎留言提出各位的宝贵意见。
话不多说,先来一段Spring的XML样本,相信大家都很眼熟:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?
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:context
"http://www.springframework.org/schema/context"
xmlns:mvc
"http://www.springframework.org/schema/mvc"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
context:component-scan
base-package
"xxx.xxx.controller"
/>
context:annotation-config
/>
mvc:default-servlet-handler
/>
mvc:annotation-driven
/>
mvc:resources
mapping
"/images/**"
location
"/images/"
/>
bean
id
"xxx"
class
"xxx.xxx.xxx.Xxx"
>
property
name
value
"xxxx"
/>
</
bean
>
beans
>
|
这个文档中,根元素<beans/>就不用说了,接下来是xmlns。那么什么是xmlns呢?xmlns其实是XML Namespace的缩写,可译为“XML命名空间”,但个人觉得,翻译后的名字反而不好理解,所以我们就叫它为XML Namespace吧。
为什么需要xmlns?
考虑这样两个XML文档:表示HTML表格元素的<table/>:
1
2
3
4
5
6
|
<
table
>
tr
>
td
>Apples</
>
>Bananas</
>
</
>
>
|
和描述一张桌子的<table/>:
>AfricanCoffeeTable</
width
>80</
length
>120</
>
>
假如这两个 XML 文档被一起使用,由于两个文档都包含带有不同内容和定义的 <table> 元素,就会发生命名冲突。XML 解析器是无法确定如何处理这类冲突。为了解决上述问题,xmlns就产生了。
如何是用xmlns?
很简单,使用语法:xmlns:namespace-prefix="namespaceURI"。其中namespace-prefix为自定义前缀,只要在这个XML文档中保证前缀不重复即可;namespaceURI是这个前缀对应的XML Namespace的定义。例如,
1 | xmlns:context="http://www.springframework.org/schema/context" |