Spring cache nie działa podczas wywoływania metody buforowanej z innej metody tego samego beana.
Oto przykład, który wyjaśnia mój problem w jasny sposób.
Konfiguracja:
<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"/>
Usługa buforowana:
@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);
...
}
}
Wynik:
aService.getEmployeeData(someDate);
output: Cache is not being used
aService.getEmployeeData(someDate);
output:
aService.getEmployeeEnrichedData(someDate);
output: Cache is not being used
Do getEmployeeData
zastosowania metody połączeń buforować employeeData
w drugim naborze, jak oczekiwano. Ale gdy getEmployeeData
metoda jest wywoływana w AService
klasie (in getEmployeeEnrichedData
), pamięć podręczna nie jest używana.
Czy tak działa Spring Cache, czy czegoś mi brakuje?
someDate
parametru?