这可能非常简单,但我想知道是否可以通过以下一种方法同时调用 @Cacheable 和 @CacheEvict:
@Cacheable(value = "empListCache")
@CacheEvict(value = "empListCache", allEntries = true)
public List<Emply> findAllEmplys() throws SomeException
上面的代码是在每次调用该方法时驱逐 empListCache 还是仅在缓存已满时才被驱逐?
谢谢。