Fix copy & paste error for cache schema

This replaces the prefix "jdbc" with "cache" and fixes the schema URL.

Closes gh-1028
master
Michael Simons 9 years ago committed by Stephane Nicoll
parent bdb94738ec
commit 82778e1746
  1. 4
      src/asciidoc/appendix.adoc

@ -3163,9 +3163,9 @@ the correct schema so that the tags in the `cache` namespace are available to yo
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" <beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
__xmlns:jdbc="http://www.springframework.org/schema/cache"__ xsi:schemaLocation=" __xmlns:cache="http://www.springframework.org/schema/cache"__ xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
__http://www.springframework.org/schema/cache http://www.springframework.org/schema/jdbc/spring-cache.xsd"__> <!-- bean definitions here --> __http://www.springframework.org/schema/cache http://www.springframework.org/schema/cache/spring-cache.xsd"__> <!-- bean definitions here -->
</beans> </beans>
---- ----

Loading…
Cancel
Save