Spring boot + Mybatis plus + Redis实现二级缓存

1.本文主要讲解基于Spring boot + Mybatis plus + Redis实现二级缓存

 1.1   通过application.yml配置redis的连接信息,springboot默认redis用的lecttuce客户端,如果想用jedis的话,只需要在pom.xml中引入redis的时候排除在lecttuce,然后再导入jedis的jar包就好了,


Spring boot + Mybatis plus + Redis实现二级缓存_第1张图片

1.2 打开mybatis plus的二级缓存,为true的时候是开启的,false是关闭二级缓存


Spring boot + Mybatis plus + Redis实现二级缓存_第2张图片

1.3 编写缓存类继承Cache类,实现Cache中的方法


Spring boot + Mybatis plus + Redis实现二级缓存_第3张图片
Spring boot + Mybatis plus + Redis实现二级缓存_第4张图片
Spring boot + Mybatis plus + Redis实现二级缓存_第5张图片

1.4 早*.xml中加上标签,type写你所编写二级缓存类的路径


Spring boot + Mybatis plus + Redis实现二级缓存_第6张图片

你可能感兴趣的:(Spring boot + Mybatis plus + Redis实现二级缓存)