使⽤@Cacheable踩过的坑
public class XXX{
@Resource
private XXX self;//@Cacheable通过内部调⽤将不会使⽤缓存,从Spring4.3开始可以通过注⼊self,再通过self内部调⽤即可解决
public final static String MY_KEY="my_key:";
@Cacheable(value=MY_KEY, key = "#FormatKey(#p0,#p1)", unless="#result == null")//⾃定义key名称,查询结果为空则不缓存
public xXXEntity select(Date date,String str) {
return xXXdao.select(date, str);
}
public String getFormatKey(Date date,String str){//⽣成key
Format(date)+sourceKey;//格式化时间拼接key
}
public Integer selectValue(Date date,String str) {
  xXXEntity entity = self.select(date, str);//解决内部调⽤不触发缓存的问题
if(entity!=null){
Value();
}
return 0;
}
}
1.解析:
value=MY_KEY -->redisz缓存中的key
⽣成redis中hash的key = "#FormatKey(#p0,#p1)"  -->当前调⽤对象中的⽅法,传⼊第⼀个和第⼆个参数
unless="#result == null" -->查询结果为空则不缓存(不加上会缓存⼀个空对象,拿值就悲剧了)
2.内部调⽤不触发缓存
cacheable⽅法⼀:wwwblogs/cyhbyw/p/8615816.html 侵删
⽅法⼆(推荐):stackoverflow/questions/16899604/spring-cache-cacheable-not-working-while-calling-from-another-method-of-the-s/48867068#48867068代码中有提现,思路:注⼊⾃⼰,然后通过注⼊的实例调⽤⾃⼰的⽅法来触发缓存机制.
@Resource
private XXX self;//@Cacheable通过内部调⽤将不会使⽤缓存,从Spring4.3开始可以通过注⼊self,再通过self内部调⽤即可解决
@Cacheable(value=MY_KEY, key = "#FormatKey(#p0,#p1)", unless="#result == null")//⾃定义key名称,查询结果为空则不缓存
public xXXEntity select(Date date,String str) {
return xXXdao.select(date, str);
}
public Integer selectValue(Date date,String str) {
  xXXEntity entity = self.select(date, str);//解决内部调⽤不触发缓存的问题
if(entity!=null){
Value();
}
return 0;
}
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。