gpt4 book ai didi

java - 找不到当前目录中的 log4j.xml

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:51:59 39 4
gpt4 key购买 nike

我有一个可运行的 jar 文件。

我在同一目录中有一个 log4j.xml 文件。

我的类路径包括“.”

env |grep CLASS
CLASSPATH=.;C:\Program Files (x86)\Java\jre6\lib\ext\QTJava.zip

但是当我运行 java -jar myrunnable.jar 时,我收到以下消息。

log4j:WARN No appenders could be found for logger (org.apache.commons.configuration.PropertiesConfiguration).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.

奇怪的是,如果我将该 jar 包装在 launch4j 可执行文件中,它会看到 log4j.xml 文件并使用它。

我确实访问了错误消息中提到的常见问题解答页面。内容如下:

This occurs when the default configuration files log4j.properties and log4j.xml can not be found and the application performs no explicit configuration. log4j uses Thread.getContextClassLoader().getResource() to locate the default configuration files and does not directly check the file system. Knowing the appropriate location to place log4j.properties or log4j.xml requires understanding the search strategy of the class loader in use.

我有点不知所措,我需要做什么才能让我的可运行 jar 看到 log4j.xml 缺少添加 -Dlog4j.configuration=file:\\\\my\crazy\long\path\to\my\eclipse\workspace\target\directory\log4j.xml 到命令行,这是一个要输入的 PITA。

如果我尝试类似 java -Dlog4j.debug -Dlog4j.configuration=.\\log4j.xml -jar myrunnable.jar

log4j: Trying to find [.\\log4j.xml] using context classloader sun.misc.Launcher $AppClassLoader@265f00f9.
log4j: Trying to find [.\\log4j.xml] using sun.misc.Launcher$AppClassLoader@265f00f9 class loader.
log4j: Trying to find [.\\log4j.xml] using ClassLoader.getSystemResource().
log4j: Could not find resource: [.\\log4j.xml].

log4j.xml./log4j.xml 的不同组合结果相同

如果它有所不同,这是通过标准 slf4j-log4j 绑定(bind)使用 log4j 的 windows 7/java 7/64 位。

补充说明:

  • 尝试 java -cp . 失败
  • 也尝试了 java -cp .\\
  • 检查了 jar 文件 META-INF\MANIFEST.MF 并且没有类路径条目
  • 这个特定的 jar 是由 maven 使用 maven shade 插件生成的。

解决方案(某种)

根据下面 Dave Newton 的回答,我更改了我的 MANIFEST.MF 文件以包含以下行:

Class-Path: ./

有了这个,我的 log4j.xml 文件就可以正常显示了。我正在使用 Maven Shade 插件构建 jar 文件,因此添加类路径条目是配置 ManifestResourceTransformer 的问题。 .

<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>my.runnable.Class</mainClass>
<manifestEntries>
<Class-Path>./</Class-Path>
</manifestEntries>
</transformer>

我说“有点”已解决,因为虽然它确实输出了从我想要的 log4j.xml 文件配置的日志记录信息,但这意味着将该路径硬编码到我的 jar 中,任何使用我的 jar 的人都必须在其中包含 log4j.xml 或 log4j.properties安装目录。我希望有一个更好的解决方案来提供标准和预期的结果(log4j.xml/log4j.properties 文件可以放在类路径中的任何位置),但是根据我今天所做的所有搜索,它似乎并不是情况。

我认为我遇到了另一个令人沮丧的问题,其中 Java 的行为并不直观,除了非常简单地解释它为何如此行为之外,任何事情都需要阅读整本书。

最佳答案

当您使用 -jar 时,类路径将被忽略。

您可以将配置文件添加到 list 的 Class-Path 条目中,但请考虑提供路径。它可能需要是一个文件资源,否则它可能会尝试在 jar 的类路径值中找到它。

关于java - 找不到当前目录中的 log4j.xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17202874/

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