Spring xml 配置我们经常都在使用,对于文件头信息却很少的去仔细研究,在此简单统计spring xml 配置文件主要头信息。

声明版本和字符编码

此信息通常位于xml文件的第一行

beans 信息

例子代码:

1
2
3
4
5
6
7
8
9
<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"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd">

</beans>

a).xmlns

声明 xml 文件默认的命名空间,表示未使用其他命名空间的所有标签的默认命名空间。

b).xmlns:xsi

声明 XML Schema 实例,声明后就可以使用 schemaLocation 属性

c). XML Schema 命名空间作用:

1 )、避免命名冲突,像 Java 中的 package 一样

2 )、将不同作用的标签分门别类(像 context 命名空间针对组件的标签)

需要使用命名空间的时候需要在文中先指出,常用命名空间如下:

xmlns:context=” http://www.springframework.org/schema/context

xmlns:cache=” http://www.springframework.org/schema/cache

xmlns:aop=”http://www.springframework.org/schema/aop"

d) xsi:schemaLocation

指定 Schema 的位置这个属性必须结合命名空间使用。这个属性有两个值,第一个值表示需要使用的命名空间。第二个值表示供命名空间使用的 XML schema 的位置.

所以在我们什么样的标签的时候,就引入什么样的命名空间和 Schema 定义就可以。