No configuration found. Configuring ehcache from ehcache-failsafe.xml found in t

错误:No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath 解决

如果在/sandh/web-inf/classes下面没有ehcache.xml这个文件,会报这个错误,No configuration found.


        Configuring ehcache from ehcache-failsafe.xml found in the classpath:.....这个文件是hibernate缓存配置文件。

  1. <ehcache>  
  2. <diskStore path="java.io.tmpdir"/>  
  3. <defaultCache  
  4.     maxElementsInMemory="10000"  
  5.     eternal="false"  
  6.     timeToIdleSeconds="10000"   
  7.     timeToLiveSeconds="10000"   
  8.     overflowToDisk="true"   
  9. />   
  10.   <cache  name="com.hour41.hibernate.vo.common.City"  
  11.     maxElementsInMemory="10000"  
  12.     eternal="false"  
  13.     timeToIdleSeconds="10000"   
  14.     timeToLiveSeconds="10000"   
  15.     overflowToDisk="true"   
  16. />  
  17. </ehcache>  

 


        上面配置了默认类缓存和城市类缓存策略:
        <diskStore>表示当内存缓存中对象数量超过类设置内存缓存数量时,将缓存对象写到硬盘,path=”java.io.tmpdir ”表示把数据写到这个目录下。Java.io.tmpdir目录在运行时会根据相对路径生成。
       <defaultCache>表示设定缓存的默认数据过期策略。
       <cache>表示设定用具体的命名缓存的数据过期策略。
         name表示具体的缓存命名。
         maxElementsInMemory表示cache中最大允许保存的对象数据量。
        eternal表示cache中数据是否为常量。
         timeToIdleSeconds表示缓存数据钝化时间
         timeToLiveSeconds表示缓存数据的生命时间。
        overflowToDisk表示内存不足时,是否启用磁盘缓存。

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值