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的主要内容,如果未能解决你的问题,请参考以下文章