Estoy intentando habilitar el almacenamiento en memoria caché de objetos en una aplicación existente de Spring 3.1.1 con Hibernate 3.5.5. Estoy usando ehcache 2.2.0. En mi applicationContext, he agregado la configuración para activar el almacenamiento en caché con EHCache.Configuración de EHCache para Spring3.1.1 e Hibernate
<cache:annotation-driven />
<bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"
p:cache-manager="ehcache" />
<bean id="ehcache"
class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"
p:config-location="ehcache.xml" />
Entonces creó el archivo ehcache.xml:
<diskStore path="java.io.tmpdir" />
<defaultCache
eternal="false"
maxElementsInMemory="1000"
overflowToDisk="false"
diskPersistent="false"
timeToIdleSeconds="0"
timeToLiveSeconds="0"
memoryStoreEvictionPolicy="LRU"/>
<cache name="studentCache"
eternal="false"
maxElementsInMemory="10000"
overflowToDisk="false"
diskPersistent="false"
timeToIdleSeconds="0"
timeToLiveSeconds="0"
memoryStoreEvictionPolicy="LRU" />
añadí las dependencias necesarias en el archivo pom.xml para ehcache. Pero ahora estoy recibiendo este error:
Initialization of bean failed; nested exception is org.springframework.beans.ConversionNotSupportedException: Failed to convert property value of type 'java.lang.String' to required type 'net.sf.ehcache.CacheManager' for property 'cacheManager'; nested exception is java.lang.IllegalStateException: Cannot convert value of type [java.lang.String] to required type [net.sf.ehcache.CacheManager] for property 'cacheManager': no matching editors or conversion strategy found
¿Alguien tiene alguna idea de lo que está causando esto?
la suya debe trabajar ... aquí es mi configuración de trabajo si ayuda: –
aweigold
@aweigold Gracias. Eso parece funcionar por alguna razón. Me faltaba el elemento de propiedad. ¿Por qué no agregas tu comentario como respuesta para poder aceptarlo? –
Genial, me alegro de que haya ayudado. – aweigold