附录

XML模式

附录的这一部分列出了数据访问的XML模式,包括以下内容:

tx模式

tx标签用于配置Spring全面事务支持中的所有这些Bean。这些标签在题为事务管理的章节中进行了介绍。

我们强烈建议您查看Spring发行版中附带的'spring-tx.xsd'文件。此文件包含Spring事务配置的XML模式,并涵盖了tx命名空间中的所有各种元素,包括属性默认值和类似信息。此文件内嵌文档,因此为了遵循DRY(不要重复自己)原则,此处不再重复这些信息。

为了完整起见,要使用tx模式中的元素,您需要在Spring XML配置文件的顶部添加以下序言。以下代码段中的文本引用了正确的模式,以便您可以使用tx命名空间中的标签

<?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:tx="http://www.springframework.org/schema/tx" (1)
	xmlns:aop="http://www.springframework.org/schema/aop"
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans
		https://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/tx
		https://www.springframework.org/schema/tx/spring-tx.xsd (2)
		http://www.springframework.org/schema/aop
		https://www.springframework.org/schema/aop/spring-aop.xsd">

	<!-- bean definitions here -->

</beans>
1 声明tx命名空间的使用。
2 指定位置(与其他模式位置一起)。
通常,当您使用tx命名空间中的元素时,您也在使用aop命名空间中的元素(因为Spring中的声明式事务支持是通过使用AOP实现的)。前面的XML代码段包含引用aop模式所需的相关行,以便您可以使用aop命名空间中的元素。

jdbc模式

jdbc元素允许您快速配置嵌入式数据库或初始化现有数据源。这些元素分别在嵌入式数据库支持初始化DataSource中进行了介绍。

要使用jdbc模式中的元素,您需要在Spring XML配置文件的顶部添加以下序言。以下代码段中的文本引用了正确的模式,以便您可以使用jdbc命名空间中的标签

<?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:jdbc="http://www.springframework.org/schema/jdbc" (1)
	xsi:schemaLocation="
		http://www.springframework.org/schema/beans
		https://www.springframework.org/schema/beans/spring-beans.xsd
		http://www.springframework.org/schema/jdbc
		https://www.springframework.org/schema/jdbc/spring-jdbc.xsd"> (2)

	<!-- bean definitions here -->

</beans>
1 声明jdbc命名空间的使用。
2 指定位置(与其他模式位置一起)。