• Redis实现Mybatis二级缓存


    1、缓存更新策略

    • 利用Redis的缓存淘汰策略被动更新 LRU 、LFU
    • 利用TTL被动更新
    • 在更新数据库时主动更新 (先更数据库再删缓存----延时双删)
    • 异步更新 定时任务 数据不保证时时一致 不穿DB

    2、不同策略之间的优缺点

    策略一致性维护成本
    利用Redis的缓存淘汰策略被动更新最差最低
    利用TTL被动更新较差较低
    在更新数据库时主动更新较强最高

    3、Redis与Mybatis整合

    • 可以使用Redis做Mybatis的二级缓存,在分布式环境下可以使用。
    • 框架采用springboot+Mybatis+Redis。框架的搭建就不赘述了。

    3.1、在pom.xml中添加Redis依赖

    1. <dependency>
    2. <groupId>org.springframework.bootgroupId>
    3. <artifactId>spring-boot-starter-data-redisartifactId>
    4. dependency>

    3.2、在application.yml中添加Redis配置

    1. #开发配置
    2. spring:
    3. #数据源配置
    4. datasource:
    5. url: jdbc:mysql://192.168.127.128:3306/test?serverTimezone=UTC&useUnicode=true&characterEncoding=utf-8
    6. username: root
    7. password: root
    8. driver-class-name: com.mysql.jdbc.Driver
    9. type: com.alibaba.druid.pool.DruidDataSource
    10. redis:
    11. host: 192.168.127.128
    12. port: 6379
    13. jedis:
    14. pool:
    15. min-idle: 0
    16. max-idle: 8
    17. max-active: 8
    18. max-wait: -1ms
    19. #公共配置与profiles选择无关
    20. mybatis:
    21. typeAliasesPackage: com.lagou.rcache.entity
    22. mapperLocations: classpath:mapper/*.xml

    3.3、缓存实现

    ApplicationContextHolder 用于注入RedisTemplate

    1. package com.lagou.rcache.utils;
    2. import org.springframework.beans.BeansException;
    3. import org.springframework.context.ApplicationContext;
    4. import org.springframework.context.ApplicationContextAware;
    5. import org.springframework.stereotype.Component;
    6. @Component
    7. public class ApplicationContextHolder implements ApplicationContextAware {
    8. private static ApplicationContext ctx;
    9. @Override
    10. //向工具类注入applicationContext
    11. public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
    12. ctx = applicationContext; //ctx就是注入的applicationContext
    13. }
    14. //外部调用ctx
    15. public static ApplicationContext getCtx() {
    16. return ctx;
    17. }
    18. public static T getBean(Class tClass) {
    19. return ctx.getBean(tClass);
    20. }
    21. @SuppressWarnings("unchecked")
    22. public static T getBean(String name) {
    23. return (T) ctx.getBean(name);
    24. }
    25. }

    RedisCache 使用redis实现mybatis二级缓存

    1. package com.lagou.rcache.utils;
    2. import org.apache.ibatis.cache.Cache;
    3. import org.slf4j.Logger;
    4. import org.slf4j.LoggerFactory;
    5. import org.springframework.data.redis.core.RedisCallback;
    6. import org.springframework.data.redis.core.RedisTemplate;
    7. import org.springframework.data.redis.core.ValueOperations;
    8. import java.util.concurrent.TimeUnit;
    9. import java.util.concurrent.locks.ReadWriteLock;
    10. import java.util.concurrent.locks.ReentrantReadWriteLock;
    11. /**
    12. * 使用redis实现mybatis二级缓存
    13. */
    14. public class RedisCache implements Cache {
    15. //缓存对象唯一标识
    16. private final String id; //orm的框架都是按对象的方式缓存,而每个对象都需要一个唯一标识.
    17. //用于事务性缓存操作的读写锁
    18. private static ReadWriteLock readWriteLock = new ReentrantReadWriteLock();
    19. //处理事务性缓存中做的
    20. //操作数据缓存的--跟着线程走的
    21. private RedisTemplate redisTemplate; //Redis的模板负责将缓存对象写到redis服务器里面去
    22. //缓存对象的是失效时间,30分钟
    23. private static final long EXPRIRE_TIME_IN_MINUT = 30;
    24. //构造方法---把对象唯一标识传进来
    25. public RedisCache(String id) {
    26. if (id == null) {
    27. throw new IllegalArgumentException("缓存对象id是不能为空的");
    28. }
    29. this.id = id;
    30. }
    31. @Override
    32. public String getId() {
    33. return this.id;
    34. }
    35. //给模板对象RedisTemplate赋值,并传出去
    36. private RedisTemplate getRedisTemplate() {
    37. if (redisTemplate == null) { //每个连接池的连接都要获得RedisTemplate
    38. redisTemplate = ApplicationContextHolder.getBean("redisTemplate");
    39. }
    40. return redisTemplate;
    41. }
    42. /*
    43. 保存缓存对象的方法
    44. */
    45. @Override
    46. public void putObject(Object key, Object value) {
    47. try {
    48. RedisTemplate redisTemplate = getRedisTemplate();
    49. //使用redisTemplate得到值操作对象
    50. ValueOperations operation = redisTemplate.opsForValue();
    51. //使用值操作对象operation设置缓存对象
    52. operation.set(key, value, EXPRIRE_TIME_IN_MINUT, TimeUnit.MINUTES);
    53. //TimeUnit.MINUTES系统当前时间的分钟数
    54. System.out.println("缓存对象保存成功");
    55. } catch (Throwable t) {
    56. System.out.println("缓存对象保存失败" + t);
    57. }
    58. }
    59. /*
    60. 获取缓存对象的方法
    61. */
    62. @Override
    63. public Object getObject(Object key) {
    64. try {
    65. RedisTemplate redisTemplate = getRedisTemplate();
    66. ValueOperations operations = redisTemplate.opsForValue();
    67. Object result = operations.get(key);
    68. System.out.println("获取缓存对象");
    69. return result;
    70. } catch (Throwable t) {
    71. System.out.println("缓存对象获取失败" + t);
    72. return null;
    73. }
    74. }
    75. /*
    76. 删除缓存对象
    77. */
    78. @Override
    79. public Object del(Object key) {
    80. try {
    81. RedisTemplate redisTemplate = getRedisTemplate();
    82. redisTemplate.delete(key);
    83. System.out.println("删除缓存对象成功!");
    84. } catch (Throwable t) {
    85. System.out.println("删除缓存对象失败!" + t);
    86. }
    87. return null;
    88. }
    89. /*
    90. 清空缓存对象
    91. 当缓存的对象更新了的化,就执行此方法
    92. */
    93. @Override
    94. public void clear() {
    95. RedisTemplate redisTemplate = getRedisTemplate();
    96. //回调函数
    97. redisTemplate.execute((RedisCallback) collection -> {
    98. collection.flushDb();
    99. return null;
    100. });
    101. System.out.println("清空缓存对象成功!");
    102. }
    103. //可选实现的方法
    104. @Override
    105. public int getSize() {
    106. return 0;
    107. }
    108. @Override
    109. public ReadWriteLock getReadWriteLock() {
    110. return readWriteLock;
    111. }
    112. }

    3.4、在mapper中增加二级缓存开启(默认不开启)

    1. "1.0" encoding="UTF-8"?>
    2. mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
    3. "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
    4. <mapper namespace="com.lagou.rcache.dao.UserDao">
    5. <cache type="com.lagou.rcache.utils.RedisCache"/>
    6. <resultMap id="BaseResultMap" type="com.lagou.rcache.entity.TUser">
    7. <id column="id" property="id" jdbcType="INTEGER"/>
    8. <result column="name" property="name" jdbcType="VARCHAR"/>
    9. <result column="address" property="address" jdbcType="VARCHAR"/>
    10. resultMap>
    11. <sql id="Base_Column_List">
    12. id, name, address
    13. sql>
    14. <select id="selectUser" resultMap="BaseResultMap">
    15. select
    16. <include refid="Base_Column_List"/>
    17. from tuser
    18. select>
    19. mapper>

    3.5、在启动时允许缓存

    1. package com.lagou.rcache;
    2. import org.mybatis.spring.annotation.MapperScan;
    3. import org.springframework.boot.SpringApplication;
    4. import org.springframework.boot.autoconfigure.SpringBootApplication;
    5. import org.springframework.cache.annotation.EnableCaching;
    6. @SpringBootApplication
    7. @MapperScan("com.lagou.rcache.dao")
    8. @EnableCaching
    9. public class RcacheApplication {
    10. public static void main(String[] args) {
    11. SpringApplication.run(RcacheApplication.class, args);
    12. }
    13. }

    注意:这里我只是介绍了其相关的核心代码,其他部分的代码进行了省略。例如:映射实体类、controller访问调用mybatis。这里只是简要的介绍,你还可以自己实现,最重要的是实现Mybatis的Catch接口。

  • 相关阅读:
    APP开发:用途与未来前景|软件定制开发|网站小程序建设
    double类型数相减有小数误差问题
    jquery操作DOM对象
    如何处理小数点问题
    服务器宕机了,数据会丢失吗
    linux安装filebeat并收集日志到elasticsearch
    【网络八股】TCP八股
    目标检测入门
    新晋“学霸”夸克大模型拿下C-Eval和CMMLU双榜第一
    英语词汇篇 - 构词法
  • 原文地址:https://blog.csdn.net/weixin_52851967/article/details/127726885