gpt4 book ai didi

java - 如何解决警告消息 :"No configuration found."

转载 作者:行者123 更新时间:2023-11-30 11:09:05 24 4
gpt4 key购买 nike

我想进行测试以获取 Analyzer 和 Directory 的值,但控制台显示以下警告消息:

WARN - No configuration found. Configuring ehcache from ehcache-failsafe.xml  found in the classpath: jar:file:/C:/Program%20Files/Apache%20Software%20Foundation/Tomcat%206.0/webapps/shop1/WebRoot/WEB-INF/lib/ehcache-1.2.3.jar!/ehcache-failsafe.xml
Analyzer:null
configurationnull

我的 Spring 配置:

<bean id="configuration" class="cn.cultivator.shop1.lucene.Configuration" init-method="init">
<property name="dirPath" value="C:/apache-tomcat-6.0.43/webapps/shop1/indexDir"></property>
</bean>

配置类:

public class Configuration {

private Analyzer analyzer= null ;

private Directory directory =null;

public Analyzer getAnalyzer() {
return analyzer;
}

public Directory getDirectory() {
return directory;
}

private String dirPath = null;

public void setDirPath(String dirPath) {
this.dirPath = dirPath;
}

public void init(){
try {
analyzer = new IKAnalyzer(true);
directory = FSDirectory.open(new File(dirPath));
} catch (IOException e) {
throw new RuntimeException(e);
}
}
}

测试代码为:

    @Test
public void testConfiguratin() {
System.out.println("Analyzer:"+configuration.getAnalyzer());
System.out.println("configuration"+configuration.getDirectory());
}

为什么值为 null 以及如何解决警告消息?

最佳答案

该消息告诉您,Ehcache 没有配置文件你的项目中的框架。因此它从它的 jar 文件加载默认配置。您可以从您的项目中删除 jar,或者在您的类路径(“src”、“src/main/java/”)中创建一个 ehcache.xml 并添加如下内容:

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

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

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

因为您已经在使用 Spring,所以在您的应用程序中使用该缓存非常容易,see here .

关于java - 如何解决警告消息 :"No configuration found.",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28271421/

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