springboot集成Ehcache缓存字典⼀、Maven库l
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
</dependency>
⼆、springboot配置l
Spring配置
spring:
cache:
type: ehcache #⼀定要配置,不配置会springboot⾃动集成SimpleCacheConfiguration
ehcache:
config: classpath:/l
三、Ehcache配置⽂件l
注意:defaultCache的配置并不会被其他定义的cache继承
<?xml version="1.0" encoding="UTF-8"?>
<ehcache updateCheck="false"xsi="/2001/XMLSchema-instance">
<!-- 磁盘缓存位置 -->
<diskStore path="pdir/Tmp_EhCache"/>
<!-- 默认配置(其他cache并不会默认继承该配置属性) -->
<defaultCache maxElementsInMemory="10000"eternal="false"
springboot aoptimeToIdleSeconds="1"timeToLiveSeconds="1"
memoryStoreEvictionPolicy="LRU"overflowToDisk="false"/>
<cache name="baseCache"maxElementsInMemory="10000"eternal="false"
timeToLiveSeconds="36000"timeToIdleSeconds="36000"overflowToDisk="false"
memoryStoreEvictionPolicy="LRU"/>
<!-- 系统字典缓存 -->
<cache name="sys-dict"
maxEntriesLocalHeap="1000"
eternal="true"
overflowToDisk="true"
statistics="false">
</cache>
<!--
name:缓存名称。
maxElementsInMemory:缓存最⼤个数。
eternal:对象是否永久有效,⼀但设置了,timeout将不起作⽤。
timeToIdleSeconds:设置对象在失效前的允许闲置时间(单位:秒)。仅当eternal=false对象不是永久有效时使⽤,可选属性,默认值是0,也就是可闲置时间⽆穷⼤。
timeToLiveSeconds:设置对象在失效前允许存活时间(单位:秒)。最⼤时间介于创建时间和失效时间之间。仅当eternal=false对象不是永久有效时使⽤,默认是0.,也就是对象存活时间⽆穷⼤。
overflowToDisk:当内存中对象数量达到maxElementsInMemory时,Ehcache将会对象写到磁盘中。
diskSpoolBufferSizeMB:这个参数设置DiskStore(磁盘缓存)的缓存区⼤⼩。默认是30MB。每个Cache都应该有⾃⼰的⼀个缓冲区。
maxElementsOnDisk:硬盘最⼤缓存个数。
diskPersistent:是否缓存虚拟机重启期数据 Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
diskExpiryThreadIntervalSeconds:磁盘失效线程运⾏时间间隔,默认是120秒。
memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使⽤)。你可以设置为FIFO(先进先出)或是LFU(较少使⽤)。
clearOnFlush:内存数量最⼤时是否清除。
-->
</ehcache>
四、启动类添加:@EnableCaching
@SpringBootApplication
@EnableCaching
public class TestApplication {
public static void main(String[] args){
SpringApplication.run(TestApplication .class, args);
log.info("已启动!");
}
}
五、在类上⾯添加@CacheConfig可以批量指定默认缓存
@CacheConfig(cacheNames=“sys-dict”)
六、设置缓存 @Cacheable
@Cacheable(value=“sys-dict”, key="#typeCode")
七、清除缓存 @CacheEvict
单个:@CacheEvict(value = “sys-dict”, key = “#typeCode”)全部:@CacheEvict(value = “sys-dict”, allEntries = true)
⼋、修改缓存:@CachePut
@CachePut(value=“sys-dict”,key="#typeCode")
九、当达到缓存数,可以将缓存保存到磁盘
其他相关链接:
.
.
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论