一、整合第三方缓存

  1、为了提高扩展性。MyBatis 定义了缓存接口 Cache。可以通过实现 Cache 接口来自定义二级缓存;(在二级缓存的基础上来设置,只是需要指定二级缓存的技术)
  2、EhCache 是一个纯 Java 的进程内缓存框架,具有快速、精干等特点,是 Hibernate 中默认的 CacheProvider;
    MyBatis定义了Cache接口方便我们进行自定义扩展。

二、整合 Ehcache 缓存

  1、导入对应的依赖信息

    导入对应的包:

ehcache-core-2.6.8.jar     ehcache 核心包
mybatis-ehcache-1.0.3.jar  整合包(mybatis 提供) 
slf4j-api-1.6.1.jar        日志包
slf4j-log4j12-1.6.2.jar    日志包

  

    使用 Maven 方式加入依赖:

<dependency>
    <groupId>net.sf.ehcache</groupId>
    <artifactId>ehcache-core</artifactId>
    <version>2.6.8</version>
</dependency>
<dependency>
    <groupId>org.mybatis.caches</groupId>
    <artifactId>mybatis-ehcache</artifactId>
    <version>1.0.3</version>
</dependency>
<dependency>
    <groupId>org.slf4j</groupId>
    <artifactId>slf4j-log4j12</artifactId>
    <version>1.6.2</version>
</dependency>

 

 

  2、编写 ehcache.xml 配置文件

<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="../config/ehcache.xsd">
    <!-- 磁盘保存路径 -->
    <diskStore path="D:\mybatis\ehcache" />

    <defaultCache
            maxElementsInMemory="1000"
            maxElementsOnDisk="10000000"
            eternal="false"
            overflowToDisk="true"
            timeToIdleSeconds="120"
            timeToLiveSeconds="120"
            diskExpiryThreadIntervalSeconds="120"
            memoryStoreEvictionPolicy="LRU">
    </defaultCache>
</ehcache>

<!--
属性说明:
    diskStore:指定数据在磁盘中的存储位置。
    defaultCache:当借助CacheManager.add("demoCache")创建Cache时,EhCache便会采用<defalutCache/>指定的的管理策略

以下属性是必须的:
    maxElementsInMemory - 在内存中缓存的element的最大数目
    maxElementsOnDisk - 在磁盘上缓存的element的最大数目,若是0表示无穷大
    eternal - 设定缓存的elements是否永远不过期。如果为true,则缓存的数据始终有效,如果为false那么还要根据timeToIdleSeconds,timeToLiveSeconds判断
    overflowToDisk - 设定当内存缓存溢出的时候是否将过期的element缓存到磁盘上

以下属性是可选的:
    timeToIdleSeconds - 当缓存在EhCache中的数据前后两次访问的时间超过timeToIdleSeconds的属性取值时,这些数据便会删除,默认值是0,也就是可闲置时间无穷大
    timeToLiveSeconds - 缓存element的有效生命期,默认是0.,也就是element存活时间无穷大
    diskSpoolBufferSizeMB 这个参数设置DiskStore(磁盘缓存)的缓存区大小.默认是30MB.每个Cache都应该有自己的一个缓冲区.
    diskPersistent - 在VM重启的时候是否启用磁盘保存EhCache中的数据,默认是false。
    diskExpiryThreadIntervalSeconds - 磁盘缓存的清理线程运行间隔,默认是120秒。每个120s,相应的线程会进行一次EhCache中数据的清理工作
    memoryStoreEvictionPolicy - 当内存缓存达到最大,有新的element加入的时候, 移除缓存中element的策略。默认是LRU(最近最少使用),可选的有LFU(最不常使用)和FIFO(先进先出)
-->

 

  3、配置 cache 标签

    在要开启的 mapper.xml 中使用二级缓存

    <!--
        自定义缓存
    -->
    <cache type="org.mybatis.caches.ehcache.EhcacheCache"></cache>

 

  参照缓存:若想在命名空间中共享相同的缓存配置和实例。可以使用 cache-ref 元素来引用另外一个缓存。

   <!--
        引用缓存:namespace 指定和哪个名称空间下的缓存一样
    -->
    <cache-ref namespace="com.njf.mybatis.dao.DepartmentMapper"/>

    在哪个 mapper.xml 中配置了上面的标签就代表该mapper使用的二级缓存与 DepartmentMapper 一样。

 

  4、测试效果

    代码:

     @Test
     public void testSecondLevelCacheEnable() throws IOException {
          SqlSessionFactory sqlSessionFactory = getsqlSessionFactory();
          SqlSession sqlSession = sqlSessionFactory.openSession();
          SqlSession sqlSession2 = sqlSessionFactory.openSession();
          try {
               DepartmentMapper mapper = sqlSession.getMapper(DepartmentMapper.class);
               DepartmentMapper mapper2 = sqlSession2.getMapper(DepartmentMapper.class);

               Department dept01 = mapper.getDeptById(1);
               System.out.println("dept01 = " + dept01);
               sqlSession.close();

               Department dept02 = mapper2.getDeptById(1);
               System.out.println("dept02 = " + dept02);
               sqlSession2.close();

               System.out.println(dept01 == dept02);
          } finally {
               sqlSession.close();
               sqlSession2.close();
          }
     }

 

    运行结果:

MyBatis(六)缓存机制 之 整合第三方缓存_缓存

 

 

   可以看到配置的自定义二级缓存生效了。

  在磁盘中生成的持久化文件:

MyBatis(六)缓存机制 之 整合第三方缓存_xml_02