我想将我的可执行jar所需的所有.properties文件放在我将运行jar文件的目录下的子目录中。目前,我的MANIFEST.MF看起来像这样:
Manifest-Version: 1.0
Build-Jdk: 1.6.0_26
Main-Class: MyMainClass
Class-Path: . conf lib/dependency1.jar
如果我将.properties文件保存在与jar文件相同的目录中,一切正常。如果我将它们移动到conf
子目录,则找不到它们。我还尝试直接指定.properties文件的路径,例如conf/log4j.properties
。
我正在尝试做什么?
更新:以下是我的可执行jar中代码失败的示例:
InputStream stream = getClass().getClassLoader().getResourceAsStream("myproperties.properties");
当myproperties.properties
位于conf
子目录中时,此语句返回null InputStream。当log4j.properties
位于conf
子目录中时,它会输出有关未找到其配置的警告消息:
log4j:WARN No appenders could be found for logger (MyMainClass).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
答案 0 :(得分:0)
尝试使用org.apache.log4j.PropertyConfigurator.configure(String configFilename)
这可用于指定日志文件的位置。