Hi,
I already create a eh cache manager for caching spring security ldap user
details. I would like to force CXF to use the very same eh cache manager
rather than create a new one.
I have the following spring bean:
org.springframework.cache.ehcache.EhCacheManagerFactoryBean
<bean id="ehCacheManager"
class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
<property name="configLocation"
value="file:${spring.config.dir}/ehcache.xml" />
<property name="shared" value="true" />
</bean>
So I would like to put all of the configuration for ehcache into the
ehcache.xml I use for hibernate and spring security.
Any suggestions as to how I might do this?