java开发项目中,经常用到xml配置文件,比如web.xml、applicationContext.xml、pom.xml等。在这些文件中都有xmlns、xmlns:xsi和xsi:schemaLocation配置。例如:
web.xml 配置文件
<web-app version="3.0"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<display-name>display-name>
<context-param>
<param-name>contextConfigLocationparam-name>
<param-value>classpath:applicationContext.xmlparam-value>
context-param>
......
web-app>
applicationContext.xml 配置文件
<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"
xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.2.xsd
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.2.xsd
http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.2.xsd" default-autowire="byName">
......
beans>
pom.xml 配置文件
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0modelVersion>
<groupId>reportgroupId>
<artifactId>report-webartifactId>
<packaging>warpackaging>
<version>0.0.1-SNAPSHOTversion>
<name>report-webname>
......
project>
在上面三个配置文件中,均有xmlns、xmlns:xsi和xsi:schemaLocation设置,平时在做项目时,遇到这些配置文件,尤其是搭建spring框架时,总是从别处直接拷贝过来,没有深入去理解这些配置信息。最近在搭建项目时,又遇到这些配置文件,打算好好理解这些东西。
针对这些配置信息,有若干思考问题:
1.xmlns、xmlns:xsi和xsi:schemaLocation代表什么意思?
2.为什么要使用这些配置信息?
带着这两个问题,查阅了相关资源和若干前辈的文章,逐步理解下。
首先理解xmlns,翻译成汉语就是xml命名空间(XML Namespaces)。那么为什么需要xml命名空间呢?W3School中关于xml教程中给出的答案是“XML命名空间提供避免元素命名冲突的方法”。举例说明:
a.xml (这个xml文档携带某个表格中的信息)
<table>
<tr>
<td>Applestd>
<td>Bananastd>
tr>
table>
b.xml (这个文档携带有关桌子的信息)
<table>
<name>African Coffee Tablename>
<width>80width>
<length>120length>
table>
如果这两个 XML 文档被一起使用,由于两个文档都包含带有不同内容和定义的元素,就会发生命名冲突。XML 解析器无法确定如何处理这类冲突。如何解决这类冲突呢?首先是使用前缀来避免命名冲突。a.xml与b.xml文档使用前缀后格式如下:
a.xml
<h:table>
<h:tr>
<h:td>Applesh:td>
<h:td>Bananash:td>
h:tr>
h:table>
b.xml
<f:table>
<f:name>African Coffee Tablef:name>
<f:width>80f:width>
<f:length>120f:length>
f:table>
现在,命名冲突不存在了,这是由于两个文档都使用了不同的名称来命名它们的
元素 (a.xml
<h:table xmlns:h="http://www.w3.org/TR/html4/">
<h:tr>
<h:td>Applesh:td>
<h:td>Bananash:td>
h:tr>
h:table>
b.xml
<f:table xmlns:f="http://www.w3school.com.cn/furniture">
<f:name>African Coffee Tablef:name>
<f:width>80f:width>
<f:length>120f:length>
f:table>
与仅仅使用前缀不同,我们为
xmlns:namespace-prefix="namespaceURI"
当命名空间被定义在元素的开始标签中时,所有带有相同前缀的子元素都会与同一个命名空间相关联。
对于xml命名空间还有一个定义就是“默认命名空间”,为元素定义默认的命名空间可以让我们省去在所有的子元素中使用前缀的工作。例如:
a.xml
<table xmlns="http://www.w3.org/TR/html4/">
<tr>
<td>Applestd>
<td>Bananastd>
tr>
table>
b.xml
<table xmlns="http://www.w3school.com.cn/furniture">
<name>African Coffee Tablename>
<width>80width>
<length>120length>
table>
上面两个均使用了默认命名空间。
到这里,我们也就理解了,比如APPlicationContext.xml中的xmlns=“http://www.springframework.org/schema/beans” 这句代码的意思,表示为 定义的默认命名空间。另外需要注意的是:用于标示命名空间的地址不会被解析器用于查找信息。其惟一的作用是赋予命名空间一个惟一的名称。不过,很多公司常常会作为指针来使用命名空间指向实际存在的网页,这个网页包含关于命名空间的信息。 也就是说,http://www.springframework.org/schema/beans 这个url地址只是为 元素命名空间定义的一个唯一名称,没有其它作用。
好了,我们再来分析下xmlns:xsi 在配置文件中的作用:
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
根据上面的理解,我们知道这句代码中,xsi表示前缀,http://www.w3.org/2001/XMLSchema-instance 表示命名空间唯一名称,那这句代码到底表示什么含义呢?为什么要引用这句代码呢? 首先我们要知道xsi是xml shema instance的缩写,翻译后就是xml文档实例。要理解xsi具体含义,我们先理解xml文档验证,在验证xml文档时,一个合法的xml文档,同样遵守文档类型定义(DTD)的语法规则,例如:
note.xml
<note>
<to>Georgeto>
<from>Johnfrom>
<heading>Reminderheading>
<body>Don't forget the meeting!body>
note>
在note.xml文件中,DOCTYPE声明是对外部DTD文件的引用,这个DTD文件的内容如下:
<!ELEMENT to (#PCDATA)>
<!ELEMENT from (#PCDATA)>
<!ELEMENT heading (#PCDATA)>
<!ELEMENT body (#PCDATA)>
]>
dtd文件的作用是定义xml文档的结构,它使用一系列合法的元素来定义文档结构。比如说,我们在note.xml文档中添加一个元素,那么note.xml就无法验证通过,因为note.dtd中没有定义aa元素。其实大家对dtd文件的使用最多的还是在html文件中,我们创建jsp页面时,在jsp页面会出现一行代码(若使用html5,不会出现这行代码):
这句代码就是说明了我们html文档使用了哪个版本的dtd文件。
对于xml文档验证,W3C支持一种基于xml的dtd替代者,它名为xml schema(注意上面我们提到了xml schema instance这个词义)。
xml schema是描述xml文档结构。xml schema 语言也称作xml schema 定义(xml schema definition , xsd)。那么xml schema文件是什么样式的呢?针对note.xml 我们定义一个名称为note.xsd的xml schema文件,具体内容:
note.xsd
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.w3school.com.cn"
xmlns="http://www.w3school.com.cn"
elementFormDefault="qualified">
<xs:element name="note">
<xs:complexType>
<xs:sequence>
<xs:element name="to" type="xs:string"/>
<xs:element name="from" type="xs:string"/>
<xs:element name="heading" type="xs:string"/>
<xs:element name="body" type="xs:string"/>
xs:sequence>
xs:complexType>
xs:element>
xs:schema>
针对note.xsd中具体代码含有不再具体解释。那么我们要理解note.xsd是xsd的一个具体的实例,也就是说现在我们拥有了一个xml schema 的一个实例即一个xml schema instance,名称叫note.xsd。接下来,在note.xml 文件中对note.xsd的使用如下:
<note
xmlns="http://www.w3school.com.cn"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.w3school.com.cn note.xsd">
<to>Georgeto>
<from>Johnfrom>
<heading>Reminderheading>
<body>Don't forget the meeting!body>
note>
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"这句代码再次出现了,现在我们就明白了,这句代码的意思是我们拥有了一个xml schema instance
其中,前缀、url都是固定不变的,说明遵守w3c协议。
那么,现在我们拥有了xml schema instance,接下来就是为xml schema instance提供使用的xml schema地址(schemaLocation),即xsd文件全路径。代码如下:
xsi:schemaLocation="http://www.w3school.com.cn note.xsd"
结论:
xmlns:xsi表示使用xsi作为前缀的Namespace
xsi:schemaLocation属性其实是Namespace为http://www.w3.org/2001/XMLSchema-instance里的schemaLocation属性,正是因为我们一开始声明了
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
这里才写作xsi:schemaLocation(当然一般都使用这个前缀)。它定义了XML Namespace和对应的XSD(Xml Schema Definition)文档的位置的关系。它的值由一个或多个URI引用对组成,两个URI之间以空白符分隔(空格和换行均可)。第一个URI是定义的XML Namespace的值,第二个URI给出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.org/schema/context的Schema的位置为http://www.springframework.org/schema/context/spring-context.xsd。