gpt4 book ai didi

hibernate - ehcache 警告消息 "No configuration found"

转载 作者:IT老高 更新时间:2023-10-28 13:58:03 24 4
gpt4 key购买 nike

应用程序启动时我收到以下警告。

2009-05-13 09:19:41,171 WARN  net.sf.ehcache.config.Configurator - No configuration found. Configuring ehcache from ehcache-failsafe.xml found in the classpath:jar:file:/app/java/lib/ehcache-1.1.jar!/ehcache-failsafe.xml  

我在以下 url 中找到了 encache 代码 .. ConfigurationFactory Code

应用程序正在尝试加载 ehcache.xml 但找不到该文件,因此它会加载 ehcache-failsafe.xml。我想知道这会对应用程序造成任何问题吗?加载 ehcache-failsafe.xml 有什么影响?

最佳答案

ehcache.xml 应该在您的 classpath 中引入,特别是在 WEB-INF/classes/ 中。然后,您可以根据自己的环境在其中指定您的需求。

这是一个例子:

<?xml version="1.0" encoding="UTF-8"?>

<ehcache>
<diskStore path="java.io.tmpdir"/>

<cache name="org.hibernate.cache.UpdateTimestampsCache"
maxElementsInMemory="50000"
eternal="true"
overflowToDisk="true"/>

<cache name="org.hibernate.cache.StandardQueryCache"
maxElementsInMemory="50000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
overflowToDisk="true"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU"
/>

<defaultCache
maxElementsInMemory="50000"
eternal="false"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
overflowToDisk="true"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU"
/>

</ehcache>

3年后,希望我的回答能帮助到别人。

关于hibernate - ehcache 警告消息 "No configuration found",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1806068/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com