共计 4983 个字符,预计需要花费 13 分钟才能阅读完成。
置信很多人和我一样,在编写 Spring 或者 Maven 或者其余须要用到 XML 文档的程序时,通常都是将这些 XML 文档头拷贝过去,并没有了解其中元素(比方 xmlns,xmlns:xsi,xsi:schemaLocation)的真正含意,不晓得哪些元素是多余的,也不晓得为什么要加那些元素。这样当有时候网上 Copy 的 XML 头有错的时候本人却不晓得怎么下手。我也是这样的,于是明天花了点工夫好好的了解了一下这些元素及其用法,现整顿与此,在此谢谢各位前辈的教训,如有总结的不对或者不好的中央,欢送留言提出各位的宝贵意见。
话不多说,先来一段 Spring 的 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: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="xxx" value="xxxx"/>
</bean>
</beans>
这个文档中,根元素 <beans/> 就不用说了,接下来是 xmlns。那么什么是 xmlns 呢?xmlns 其实是 XML Namespace 的缩写,可译为“XML 命名空间”,但集体感觉,翻译后的名字反而不好了解,所以咱们就叫它为 XML Namespace 吧。
为什么须要 xmlns?
思考这样两个 XML 文档:示意 HTML 表格元素的 <table/>:
<table>
<tr>
<td>Apples</td>
<td>Bananas</td>
</tr>
</table>
和形容一张桌子的 <table/>:
<table>
<name>African Coffee Table</name>
<width>80</width>
<length>120</length>
</table>
如果这两个 XML 文档被一起应用,因为两个文档都蕴含带有不同内容和定义的 <table> 元素,就会产生命名抵触。XML 解析器是无奈确定如何解决这类抵触。为了解决上述问题,xmlns 就产生了。
如何应用 xmlns?
很简略,应用语法:xmlns:namespace-prefix=”namespaceURI”。其中 namespace-prefix 为自定义前缀,只有在这个 XML 文档中保障前缀不反复即可;namespaceURI 是这个前缀对应的 XML Namespace 的定义。例如,
xmlns:context="http://www.springframework.org/schema/context"
这一句定义了一个 http://www.springframwork.org…(这和 Java 类中的包的申明很类似),并将其和前缀 context 绑定。所以下面的 Spring XML 文档中会有这么一句:
<context:component-scan base-package="xxx.xxx.controller" />
这里的 <component-scan/> 元素就来自别名为 context 的 XML Namespace,也就是在 http://www.springframework.or…。
咱们还能够将前缀定义为 abc:
xmlns:abc="namespaceURI"
这样再应用这个 namespaceURI 中的元素时,须要以 abc 为前缀,例如:<abc:xxx/>。再拿下面的例子解释怎么应用 xmlns:
<!-- 这里 xmlns:h="url1" 示意这个 table 是用 h 作为标记,table 的写法在 url1 中定义 -->
<h:table xmlns:h="url1">
<h:tr>
<h:td>Apples</h:td>
<h:td>Bananas</h:td>
</h:tr>
</h:table>
和:
<!-- 这里 xmlns:f="url2" 示意这个 table 是用 f 作为标记,table 的写法在 url2 中定义 -->
<f:table xmlns:f="url2">
<f:name>African Coffee Table</f:name>
<f:width>80</f:width>
<f:length>120</f:length>
</f:table>
后者与前者仅仅应用不同前缀,咱们为 <table> 标签增加了一个 xmlns 属性,这样就为前缀赋予了一个与某个命名空间相关联的限定名称。此时再把它们放在一起,XML 解析器就不会报错了。
留神:当 xmlns 被定义在元素的开始标签中(如这里的 <f:table/>)时,所有带有雷同前缀的子元素都会与同一个 Namespace 相关联(即 <f:table/> 外面的 <f:name/> 和 <f:width/> 也会应用 url2 定义的写法)。
xmlns 和 xmlns:xsi 有什么不同?
xmlns 示意默认的 Namespace。例如 Spring XML 文档中的
xmlns="http://www.springframework.org/schema/beans"
这一句示意该文档默认的 XML Namespace 为 http://www.springframwork.org…。 对于默认的 Namespace 中的元素,能够不应用前缀 。例如 Spring XML 文档中的
<bean id="xxx" class="xxx.xxx.xxx.Xxx">
<property name="xxx" value="xxxx"/>
</bean>
xmlns:xsi 示意应用 xsi 作为前缀的 Namespace,当然前缀 xsi 须要在文档中申明。
*xsi:schemaLocation 有何作用 ?*
xsi:schemaLocation 属性其实是 Namespace 为 http://www.w3.org/2001/XMLSch…,正是因为咱们一开始申明了
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
这里才写作 xsi:schemaLocation(当然个别都应用这个前缀)。它定义了 XML Namespace 和对应的 XSD(Xml Schema Definition)文档的地位的关系。它的值由一个或多个 URI 援用对组成(能够简略了解为 Key-Value 对),两个 URI 之间以空白符分隔(空格和换行均可)。第一个 URI(即 Key-Value 对中的 Key)是定义的 XML Namespace 的值,第二个 URI(即 Value)给出 Schema 文档的地位,Schema 处理器将从这个地位读取 Schema 文档, 该文档的 targetNamespace 必须与第一个 URI 相匹配 。例如:
xsi:schemaLocation="http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd"
这里示意 Namespace 为 http://www.springframework.or…http://www.springframework.org/schema/context/spring-context.xsd。这里咱们能够关上这个 Schema 的地位,上面是这个文档的开始局部:
<xsd:schema xmlns="http://www.springframework.org/schema/context"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:beans="http://www.springframework.org/schema/beans"
xmlns:tool="http://www.springframework.org/schema/tool"
<!-- 这里的 targetNamespace 和上方 xsi:schemaLocation 中的第一个 URI 匹配 -->
targetNamespace="http://www.springframework.org/schema/context"
elementFormDefault="qualified"
attributeFormDefault="unqualified">
能够发现这个文档中定义的 targetNamespace 和上方 xsi:schemaLocation 中的第一个 URI 匹配,都是 http://www.springframework.or…。有了下面的阐明后,再去了解开始的 Spring XML 文档,肯定会有不一样的感觉!
最初再次感激各位前辈的贵重教训。
参考资料:
http://www.springframework.org/schema/context/spring-context.xsd
http://bbs.csdn.net/topics/390751819
http://blog.csdn.net/zhengyeqing520/article/details/6091656
http://www.360doc.com/content/11/0323/13/4619459_103829478.shtml
http://baike.baidu.com/view/1853567.htm