1. 程式人生 > >Spring Cacheable 註解不緩存null值

Spring Cacheable 註解不緩存null值

get true 保存 緩存 spring 也會 null 空值 pan

用Cacheable註解時,發現空值,也會被緩存下來。如果我們期望空值不被緩存,可以做如下設置:

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

unless="#result == null" //當條件為true時,不保存對象

Spring Cacheable 註解不緩存null值