mybatis整合ehcache

Posted 乔克叔叔

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis整合ehcache相关的知识,希望对你有一定的参考价值。

 

ehcache.xml

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="../config/ehcache.xsd>
    <!-- 缓存到本地磁盘上  的缓存目录 -->
    <!--<diskStore path="F:\\develop\\ehcache"/>
    -->
    <defaultCache
        maxElementsInMemory="1000"
        maxElementsOnDisk="10000000"
        eternal="false"
        overflowToDisk="false"
        timeToIdleSeconds="120"
        timeToLiveSeconds="120"
        diskExpiryThreadIntervalSeconds="120"
        momoryStoreEvictionPolicy="LRU">
    </defaultCache>
</ehcache>

 

以上是关于mybatis整合ehcache的主要内容,如果未能解决你的问题,请参考以下文章

mybatis整合ehcache

Mybatis学习整合第三方缓存EHCache

mybatis整合ehcache

mybatis缓存之整合第三方缓存工具ehcache

Mybatis整合第三方缓存

Mybatis整合第三方缓存