From eb8ba79ba1240d13799307d21bd72b41d9f9894a Mon Sep 17 00:00:00 2001 From: Mic <misvy@vmware.com> Date: Wed, 5 Jun 2013 09:04:41 +0800 Subject: [PATCH] moved cache config files to dedicated folder --- src/main/resources/{ => cache}/ehcache.xml | 0 src/main/resources/{ => cache}/ehcache.xsd | 0 src/main/resources/spring/tools-config.xml | 2 +- 3 files changed, 1 insertion(+), 1 deletion(-) rename src/main/resources/{ => cache}/ehcache.xml (100%) rename src/main/resources/{ => cache}/ehcache.xsd (100%) diff --git a/src/main/resources/ehcache.xml b/src/main/resources/cache/ehcache.xml similarity index 100% rename from src/main/resources/ehcache.xml rename to src/main/resources/cache/ehcache.xml diff --git a/src/main/resources/ehcache.xsd b/src/main/resources/cache/ehcache.xsd similarity index 100% rename from src/main/resources/ehcache.xsd rename to src/main/resources/cache/ehcache.xsd diff --git a/src/main/resources/spring/tools-config.xml b/src/main/resources/spring/tools-config.xml index e64c189..1be7e3b 100644 --- a/src/main/resources/spring/tools-config.xml +++ b/src/main/resources/spring/tools-config.xml @@ -42,7 +42,7 @@ </bean> <bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> - <property name="configLocation" value="classpath:ehcache.xml"/> + <property name="configLocation" value="classpath:cache/ehcache.xml"/> </bean> -- GitLab