O cache do Spring não está funcionando ao chamar o método em cache de outro método do mesmo bean.
Aqui está um exemplo para explicar meu problema de forma clara.
Configuração:
<cache:annotation-driven cache-manager="myCacheManager" />
<bean id="myCacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager">
<property name="cacheManager" ref="myCache" />
</bean>
<!-- Ehcache library setup -->
<bean id="myCache"
class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" p:shared="true">
<property name="configLocation" value="classpath:ehcache.xml"></property>
</bean>
<cache name="employeeData" maxElementsInMemory="100"/>
Serviço em cache:
@Named("aService")
public class AService {
@Cacheable("employeeData")
public List<EmployeeData> getEmployeeData(Date date){
..println("Cache is not being used");
...
}
public List<EmployeeEnrichedData> getEmployeeEnrichedData(Date date){
List<EmployeeData> employeeData = getEmployeeData(date);
...
}
}
Resultado:
aService.getEmployeeData(someDate);
output: Cache is not being used
aService.getEmployeeData(someDate);
output:
aService.getEmployeeEnrichedData(someDate);
output: Cache is not being used
A getEmployeeData
chamada do método usa cache employeeData
na segunda chamada conforme o esperado. Mas quando o getEmployeeData
método é chamado dentro da AService
classe (in getEmployeeEnrichedData
), o Cache não está sendo usado.
É assim que o Spring Cache funciona ou estou faltando alguma coisa?
someDate
param?