一、配置样例
<?xml version="1.0" encoding="UTF-8"?> <ehcache> <diskStore path="d:/ehcache/"></diskStore> <!-- 默认缓存配置 --> <defaultCache maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true" /> <!-- 特定缓存配置 --> <cache name="com.zbaccp.entity.Person" maxElementsInMemory="10000" eternal="false" timeToIdleSeconds="300" timeToLiveSeconds="600" overflowToDisk="true" /> </ehcache>
原文:http://www.cnblogs.com/MIC2016/p/6397227.html