Spring cache ไม่ทำงานเมื่อเรียกวิธีการแคชจากวิธีอื่นของ bean เดียวกัน
นี่คือตัวอย่างเพื่ออธิบายปัญหาของฉันอย่างชัดเจน
การกำหนดค่า:
<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
คลาส (ในgetEmployeeEnrichedData
) แคชจะไม่ถูกใช้
สปริงแคชทำงานอย่างไรหรือฉันพลาดอะไรไป
someDate
พารามิเตอร์เดียวกันหรือไม่