所 有 使 用 XML 文 件 進 行 配 置 信 息 加 載 的 Spring IoC 容 器 , 包 括 BeanFactory 和
ApplicationContext的全部XML相應實現,都使用統一的XML格式。在Spring 2.0版本以前,這種格
式由Spring提供的DTD規定,也就是說,全部的Spring容器加載的XML配置文件的頭部,都須要如下
形式的DOCTYPE聲明:spring
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" ➥ "http://www.springframework.org/dtd/spring-beans.dtd"> <beans> ... </beans>
從Spring 2.0版本以後,Spring在繼續保持向前兼容的前提下,既能夠繼續使用DTD方式的DOCTYPE
進行配置文件格式的限定,又引入了基於XML Schema的文檔聲明。因此,Spring 2.0以後,一樣能夠
使用代碼清單4-11所展現的基於XSD的文檔聲明。spring-mvc
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:util="http://www.springframework.org/schema/util" xmlns:jee="http://www.springframework.org/schema/jee" xmlns:lang="http://www.springframework.org/schema/lang" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" 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/tx
http://www.springframework.org/schema/jdbc
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/jdbc/spring-jdbc.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd "> </beans>