hibernate:net.sf.ehcache.config.Configurator#configure : No configuration found. Configuring ehcache from ehcache-failsafe.xml f

来源:互联网 发布:https是哪个端口 编辑:程序博客网 时间:2024/05/16 23:02

针对这个问题:net.sf.ehcache.config.Configurator#configure : No configurationfound. Configuring ehcache from ehcache-failsafe.xml found in theclasspath:jar:file:/E:/ytools/ssh/tools/eclipse/MyEclipse%206.0/eclipse/plugins/com.genuitec.org.hibernate.eclipse_6.0.1.zmyeclipse601200710/myeclipse-data/3.0/lib/ehcache-1.1.jar!/ehcache-failsafe.xml

 

在网上查到解决方法:

原因:报这个错是因为在/web-inf/classes(web开发)或是src目录下(java开发)没有ehcache.xml这个文件!这个文件是hibernate缓存配置文件。

解决方法:从ehcache-1.1.jar  中把文件ehcache-failsafe.xml  解压出来改名 ehcache.xml 复制到classes下面就行了!

配置文件解读:
<defaultCache>表示设定缓存的默认数据过期策略。
name表示具体的缓存命名。
maxElementsInMemory表示cache中最大允许保存的对象数据量。
eternal表示cache中数据是否为常量。
timeToIdleSeconds表示缓存数据钝化时间
timeToLiveSeconds表示缓存数据的生命时间。
overflowToDisk表示内存不足时,是否启用磁盘缓存。

方法可行