Spring Cache @Cacheable - 从同一 bean 的另一个方法调用时不工作
从同一 Bean 的另一个方法调用缓存的方法时,Spring 缓存不起作用。
这里有一个例子,以清晰的方式解释我的问题。
配置:
<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
方法调用按预期在第二次调用中使用缓存。但是,当在类(in )中调用该方法时,不会使用缓存。getEmployeeData
employeeData
getEmployeeData
AService
getEmployeeEnrichedData
这是弹簧缓存的工作原理还是我错过了什么?