标签: spring caching caffeine
我使用缓存咖啡因弹簧来缓存我的Web服务。因此,当我的Web服务返回错误401时,此错误将保留在缓存中,因此对该Web服务的下一次调用将自动返回错误401。 我想知道默认的咖啡因缓存配置是否缓存错误?并且属性(unless =“#result.error”)是否可以解决此问题?
@Cacheable(value = "testCache", unless="# result.error") public Response getWebService(){ } }