diff --git a/src/reference/docbook/xsd-configuration.xml b/src/reference/docbook/xsd-configuration.xml
index 262c59de7b..99cab4926a 100644
--- a/src/reference/docbook/xsd-configuration.xml
+++ b/src/reference/docbook/xsd-configuration.xml
@@ -812,6 +812,56 @@ http://www.springframework.org/schema/beans http://www.springframework.org/schem
'src/org/springframework/beans/factory/xml' directory of the
Spring source distribution.
+
+
+ The jdbc schema
+ The jdbc tags allow you to quickly configure an
+ embedded database or initialize an existing data source. These tags are
+ documented in and
+ respectively.
+ To use the tags in the jdbc
+ schema, you need to have the following preamble at the top of your Spring XML
+ configuration file; the text in the following snippet references the
+ correct schema so that the tags in the jdbc namespace are
+ available to you.
+
+xmlns:jdbc="http://www.springframework.org/schema/jdbc"http://www.springframework.org/schema/jdbc http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd"
+
+]]><!-- bean definitions here -->]]>
+
+
+
+ The cache schema
+ The cache tags can be used to enable support for Spring's
+ @CacheEvict, @CachePut
+ and @Caching annotations. It it also supports declarative
+ XML-based caching. See and
+ for details.
+ To use the tags in the cache
+ schema, you need to have the following preamble at the top of your Spring XML
+ configuration file; the text in the following snippet references the
+ correct schema so that the tags in the cache namespace are
+ available to you.
+
+xmlns:jdbc="http://www.springframework.org/schema/cache"http://www.springframework.org/schema/cache http://www.springframework.org/schema/jdbc/spring-cache-3.1.xsd"
+
+]]><!-- bean definitions here -->]]>
+
+
The beans schema
Last but not least we have the tags in the beans schema.