我的代码如下,当我到达最后并尝试从缓存中打印出一些内容时,密钥列表为空。
@Configuration
@EnableCaching
public class EhcacheConfiguration implements CachingConfigurer
{
CacheConfiguration cacheConfiguration = new CacheConfiguration();
cacheConfiguration.setName("DataCache");
cacheConfiguration.setMemoryStoreEvictionPolicy("LRU");
cacheConfiguration.setMaxEntiresLocalHeap(1000);
cacheConfiguration.setEternal(false);
net.sf.ehcache.config.Configuration config = new net.sf.ehcache.config.Configuration();
config.addCache(cacheConfiguration);
return net.sf.ehcache.CacheManager.newInstance(config);
}
@Bean
@Override
public CacheManager cacheManager()
{
return new EhCacheManager(ehCacheManager());
}
@Override
public CacheResolver cacheResolver()
{
return new SimpleCacheResolver();
}
@Bean
@Override
public KeyGenerator keyGenerator()
{
return new SimpleKeyGenerator();
}
@Override public CacheErrorHandler errorHandler()
{
return new SimpleCacheErrorHandler();
}
@Service
public class DataCalculationsDataServiceImp implements DataSubcalculationsDataService
{
.
.
.
@Cacheable("DataCache")
public ThreadSafeList<float[]> createCacheableDataList()
{
return new ThreadSafeList<float[]>();
}
@Override
public void readData(DataCalculationEtity dataCalculationEntity, InputStream inputStream)
{
.
.
.
ThreadSafeList<float[]> dataList = createCacheableDataList();
.
.
(dataList is eventually assigned data)
.
.
EhCacheCacheManager manager = new (EhCacheCacheManager)applicationContext.getBean("cacheManager");
Cache dataListCache = cacheManager.getCache("DataCache");
net.sf.ehcache.Ehcache ehCache = (net.sf.ehcache.Ehcache) dataListCache.getNativeCache();
LOG.info("Size of dataListCache: " + ehCache.getSize());
}
大小打印为零,我无法弄清楚原因。我做了一些更新,比如在一个答案中建议公开我的@Cacheable方法。我不明白为什么会忽略对注释为@Cacheable的方法的调用。
这两个链接强化了John R给出的答案 Stack Overflow similar question java2practice article
答案 0 :(得分:2)
我不确定错误消息,但您在私有方法上有@Cacheable
。由于你是在同一个类中进行调用,因此它不会被Spring截获,因此缓存不会发生。
对于每个@Service
(或@Component
,@Controller
等),Spring通常的工作方式是creating proxies。当某些东西调用服务时,它实际上会命中代理。代理查看实际目标上的注释(例如,@Cacheable
或@Transactional
),然后在调用实际目标方法之前/之后执行一些操作。
我刚才描述的方式有点简化,Spring可以通过其他方式proxy your class。如果接口未指定代理方法,Spring可以动态生成目标类(您的服务)的子类。还有编译时间和加载时间编织,其中实现注释的字节码被注入到已编译的类文件中。
如果您之前没有遇到此问题,我强烈建议您阅读Spring文档中有关AOP的部分。