用Cacheable注解时,发现空值,也会被缓存下来。如果我们期望空值不被缓存,可以做如下设置:
@Cacheable(key = "#id", unless="#result == null") public XXXPO getValue(int id) { //get }
unless="#result == null" //当条件为true时,不保存对象
本文共 235 字,大约阅读时间需要 1 分钟。
用Cacheable注解时,发现空值,也会被缓存下来。如果我们期望空值不被缓存,可以做如下设置:
@Cacheable(key = "#id", unless="#result == null") public XXXPO getValue(int id) { //get }
unless="#result == null" //当条件为true时,不保存对象
转载于:https://www.cnblogs.com/zsg88/p/8707514.html