Fix copy & paste error for cache schema

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

Closes gh-1028
This commit is contained in:
Michael Simons
2016-04-06 11:51:24 +02:00
committed by Stephane Nicoll
parent bdb94738ec
commit 82778e1746

View File

@@ -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"?>
<beans xmlns="http://www.springframework.org/schema/beans"
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/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>
----