1.pom
-
-
<dependency>
-
<groupId>net.sf.ehcache</groupId>
-
<artifactId>ehcache</artifactId>
-
</dependency>
2. application.properties
3. 在resources目录下放一个文件 ehcache.xml
-
<ehcache xmlns:xsi="
-
xsi:noNamespaceSchemaLocation="
-
updateCheck="false">
-
<diskStore path="java.io.tmpdir"/>
-
<!--defaultCache:echcache的默认缓存策略 -->
-
<defaultCache
-
maxElementsInMemory="10000"
-
eternal="false"
-
timeToIdleSeconds="120"
-
timeToLiveSeconds="120"
-
maxElementsOnDisk="10000000"
-
diskExpiryThreadIntervalSeconds="120"
-
memoryStoreEvictionPolicy="LRU">
-
<persistence strategy="localTempSwap"/>
-
</defaultCache>
-
-
-
<!-- 菜单缓存策略 -->
-
<cache name="menucache"
-
maxElementsInMemory="10000"
-
eternal="false"
-
timeToIdleSeconds="120"
-
timeToLiveSeconds="120"
-
maxElementsOnDisk="10000000"
-
diskExpiryThreadIntervalSeconds="120"
-
memoryStoreEvictionPolicy="LRU">
-
<persistence strategy="localTempSwap"/>
-
</cache>
-
-
</ehcache>
4.读取缓存 在 serviceImpl 层,例:MenuServiceImpl
加入的注解 @Cacheable(key="'menu-'+#parentId",value="menucache") ,其中 key="'menu-'+#parentId" 是指相应的键,#parentId 是通配符,和参数名对应,key 也可以是固定的字符, value="menucache" 中的 menucache 是 ehcache.xml中缓存策略中的name
5.清除缓存,也在在 serviceImpl 层,例:MenuServiceImpl
加入注解 @CacheEvict(value="menucache", allEntries=true)
阅读(1312) | 评论(0) | 转发(0) |