zoukankan      html  css  js  c++  java
  • ehcache 缓存使用

     一:详细配置步骤

         1,添加ehcache.xml文件

          将ehcache.xml文件添加到src路径下面。ehcache.xml文件内容如下

    1. <ehcache>  
    2.     <diskStore path="java.io.tempdir" />  
    3.     <defaultCache maxElementsInMemory="1000" eternal="false"  
    4.         timeToIdleSeconds="120" timeToLiveSeconds="120" overflowToDisk="true" />  
    5.     <cache name="ehcacheName" maxElementsInMemory="10000"  
    6.         eternal="false" timeToIdleSeconds="300000" timeToLiveSeconds="600000"  
    7.         overflowToDisk="true" />  
    8. </ehcache>  

         2,添加spring配置文件

         在applicContext.xml文件中添加

    1.    <bean id="cacheManagerFactory"  
    2.     class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"  
    3.     p:configLocation="classpath:ehcache.xml"></bean>  
    4.   
    5. <!-- 声明cacheManager -->  
    6. <bean id="cacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"   
    7.     p:cacheManager-ref="cacheManagerFactory" ></bean>  
  • 相关阅读:
    这年头学爬虫还就得会点 scrapy 框架
    【全栈之路】JAVA基础课程十_JAVA虚拟机(20190706v1.1)
    牛客练习赛61
    ERD图
    深入理解Java虚拟机-如何利用VisualVM对高并发项目进行性能分析
    阿里研究员吴翰清:世界需要什么样的智能系统?
    《深入理解 C# (第2版)》
    HtmlAgility 抓取网页上的数据
    abp(net core)+easyui+efcore实现仓储管理系统——入库管理之三存储过程(三十九)
    如何Tomcat完美访问web项目,无需配置“项目名”
  • 原文地址:https://www.cnblogs.com/jpfss/p/8276158.html
Copyright © 2011-2022 走看看