Spring Cacheable注解不缓存null值

      今天,用Cacheable注解时,发现空值,也会被缓存下来。下次另一个系统如果更新了值,这边从缓存取,还是空值,会有问题。所以一方面,希望另一个系统更新时,能清缓存,另一方面不希望缓存中有太多垃圾数据。

参考http://stackoverflow.com/questions/12113725/how-do-i-tell-spring-cache-not-to-cache-null-value-in-cacheable-annotation的做法,对程序做修改

    @Cacheable(key = "''+#id", unless="#result == null")
    public XXXPO get(int id) {
       //get from db
    }

这样,当方法返回空值时,就不会被缓存起来。见unless解释:

/**
 * Spring Expression Language (SpEL) attribute used to veto method caching.
 * <p>Unlike {@link #condition()}, this expression is evaluated after the method
 * has been called and can therefore refer to the {@code result}. Default is "",
 * meaning that caching is never vetoed.
 * @since 3.2
 */

大意是使用result的值,来决定是否来否定方法缓存。因此可以用来做条件判断
  • 4
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 7
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值