Aynı fasulyenin başka bir yönteminden önbelleğe alınmış yöntem çağrılırken yay önbelleği çalışmıyor.
İşte sorunumu net bir şekilde açıklamak için bir örnek.
Yapılandırma:
<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"/>
Önbelleğe alınmış hizmet:
@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);
...
}
}
Sonuç:
aService.getEmployeeData(someDate);
output: Cache is not being used
aService.getEmployeeData(someDate);
output:
aService.getEmployeeEnrichedData(someDate);
output: Cache is not being used
getEmployeeData
Yöntem çağrısı kullandığı önbelleğe employeeData
beklendiği gibi ikinci aramada. Ancak getEmployeeData
yöntem AService
sınıf (in getEmployeeEnrichedData
) içinde çağrıldığında , Cache kullanılmıyor.
Yay önbelleği böyle mi çalışıyor yoksa bir şey mi kaçırıyorum?
someDate
param için aynı değeri mi kullanıyorsunuz ?