Hello,
EhCacheManagerFactoryBean seems to accept only one file as configLocation.
Is there any way to use many config files ?
I would like to put ehcache config files in each jar i use according to the classes and methods that i want to cache in each jar.
When i have 2 or more jar that define an ehcache context, only one seems to be used.
Is this possible to do something like that with a wild card ?
With this class, it doesn't seem but with another ?Code:<bean id="myModulesManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"> <property name="configLocation" value="classpath*:*-ehcache.xml"/> </bean>
Thank you for your help.
Pierre


Reply With Quote
