报错:No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath:.....
原因:报这个错是因为在/sandh/web-inf/classes下面没有ehcache.xml这个文件!这个文件是hibernate缓存配置文件。
解决方法:从ehcache-1.1.jar 中把文件ehcache-failsafe.xml 解压出来改名 ehcache.xml 复制到classes下面就行了!
配置文件解读:
<defaultCache>表示设定缓存的默认数据过期策略。
name表示具体的缓存命名。
maxElementsInMemory表示cache中最大允许保存的对象数据量。
eternal表示cache中数据是否为常量。
timeToIdleSeconds表示缓存数据钝化时间
timeToLiveSeconds表示缓存数据的生命时间。
overflowToDisk表示内存不足时,是否启用磁盘缓存。
本文介绍了解决因ehcache.xml配置文件缺失导致的应用错误的方法,并解释了如何正确配置缓存参数,包括缓存的默认策略、命名、内存限制等。
4960

被折叠的 条评论
为什么被折叠?



