变更缓存供应商EHCACHE

变更缓存供应商EHCACHE

变更缓存供应商EHCACHE

导入相关坐标依赖

   <dependency>
            <groupId>net.sf.ehcache</groupId>
            <artifactId>ehcache</artifactId>
        </dependency>


导入相关配置

spring.cache.type=ehcache

导入ehcache xml配置

这里需要指定特定的缓存位置 testCache,timeToIdleSeconds 表示设置缓存的时间

     
    <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
             updateCheck="false">
    
        
        <diskStore path="java.io.tmpdir"/>
    
    
    
        
        <defaultCache maxElementsInMemory="1000"
                       eternal="false"
                       timeToIdleSeconds="3600"
                       timeToLiveSeconds="0"
                       overflowToDisk="true"
                       maxElementsOnDisk="10000"
                       diskPersistent="false"
                       diskExpiryThreadIntervalSeconds="120"
                       memoryStoreEvictionPolicy="FIFO"
        />
         
    
        
    
    
        <cache name="testCache"
               maxEntriesLocalHeap="2000"
               eternal="false"
               timeToIdleSeconds="3600"
               timeToLiveSeconds="0"
               overflowToDisk="false"
               statistics="true"
               memoryStoreEvictionPolicy="FIFO">
    
        cache>
    
    
    ehcache>


你可能感兴趣的:(Java全栈开发进阶,#,缓存,spring,缓存,spring,boot)