注解配置与EhCache使用

pom文件引入

    org.springframework.boot
    spring-boot-starter-cache


    xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
    updateCheck="false">
    

    
             timeToIdleSeconds="120" timeToLiveSeconds="120"
        memoryStoreEvictionPolicy="LRU" overflowToDisk="false" />

             maxElementsOnDisk="100000" />

1.  

你可能感兴趣的:(工具)