Веб-кеш не працює при виклику кешованого методу з іншого методу того ж біна.
Ось приклад, щоб пояснити мою проблему чітко.
Конфігурація:
<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"/>
Кешована послуга:
@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);
...
}
}
Результат:
aService.getEmployeeData(someDate);
output: Cache is not being used
aService.getEmployeeData(someDate);
output:
aService.getEmployeeEnrichedData(someDate);
output: Cache is not being used
В getEmployeeData
використовує виклик методу кешування employeeData
при другому виклику , як очікувалося. Але коли getEmployeeData
метод викликається в AService
класі (in getEmployeeEnrichedData
), кеш не використовується.
Це як працює весняний кеш, чи я щось пропускаю?
someDate
парам?