gpt4 book ai didi

java - 使用可执行 JAR 时指定 Log4j2 配置文件

转载 作者:塔克拉玛干 更新时间:2023-11-03 03:04:48 24 4
gpt4 key购买 nike

我在使用可执行 JAR 文件时无法指定 Log4j2 配置文件位置。如果我将所有 JAR 分开,它工作正常,但是当我尝试将它们组合成一个可执行 JAR 文件时,出于某种原因,log4j2.xml 文件没有从命令行中获取。

我试过这两种指定位置的方法:

java -Djava.libary.path=..\bin -cp ..\config -jar MyApplication.jar

java -Djava.libary.path=..\bin -Dlog4j.configurationFile=..\config\log4j2.xml -jar MyApplication.jar

这些都不起作用。我还尝试将包含配置文件的目录添加到 JAR list 文件中的类路径:

Manifest-Version: 1.0
Ant-Version: Apache Ant 1.9.2
Created-By: 1.7.0_21-b11 (Oracle Corporation)
Main-Class: com.abc.MyApplication
Class-Path: ../config/

我也没有用这个方法成功过。知道我可能做错了什么吗?

在此先感谢您的帮助!


编辑

啊,我想我搞错了问题。最初,这是我在命令行输出中看到的错误:

ERROR StatusLogger No log4j2 configuration file found. Using default configuration: logging only errors to the console.

但是在我更改内容的某个时候,错误消息在我没有意识到的情况下更改为:

ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the classpath. Using SimpleLogger to log to the console...

所以我发现即使我构建的可执行 JAR 包含 log4j-core-2.1.jarlog4j-api-2.1.jar它内部的 JAR 和 MANIFEST 文件的类路径中存在问题。我编写 ant 文件以将库合并到我创建的单个 JAR 中的方式成功地复制了目录和类文件,但由于某种原因没有复制其他类型,这显然也是必要的(例如 Log4j-config .xsd、Log4j-events.dtd 等)。

为了解决这个问题,我将在 Ant 构建文件中合并 JAR 的方式更改为:

<jar destfile="${dist}/${jarName}" basedir="${classes}" 
excludes=".svn">

<!-- Merge this JAR with all the JARs in the lib directory, so that
we are only creating one distribution JAR that includes all the
libraries that you need. -->
<fileset dir="${classes}" includes="**/*.class" />
<zipgroupfileset dir="${lib}" includes="**/*.jar" />

<!-- Specify the manifest file of the JAR -->
<manifest>
<attribute name="Main-Class" value="com.abc.MyApplication"/>
<attribute name="Class-Path" value=". ${manifest.classpath}"/>
</manifest>
</jar>

这解决了问题并将 JAR 中的所有文件复制到我新创建的 JAR 中。

解决此问题后,我在上面发布的第二条命令用于指定配置文件的位置。 (正如下面的 @rewolf 所指出的,第一个命令将不起作用,因为在 JAR 的 MANIFEST 中指定的类路径会覆盖命令行中指定的任何类路径。

感谢您的回复,它们确实帮助我走上了正确的道路,找出了我的错误。

最佳答案

Java 文档中没有很好/很明显地解释的一点是,如果您使用的是可执行 Jar,它将仅使用 Manifest 文件中指定的类路径。它不会听取 -cp--classpath 参数。

-Dlog4j.configurationFile=directory/file.xml

不过应该​​绝对有效。鉴于斜杠方向,我假设您正在 Windows 上运行。您确定是从正确的相对目录运行它吗?

更新

我刚刚在 Windows 中尝试过,没有任何问题。我使用了以下 list :

Manifest-Version: 1.0
Built-By: andrew.flower
Build-Jdk: 1.7.0_67
Class-Path: lib/log4j-api-2.1.jar lib/log4j-core-2.1.jar
Created-By: Apache Maven 3.2.3
Main-Class: com.andrew_flower.test.Log4jTest
Archiver-Version: Plexus Archiver

Log4j2 jar 位于 lib/ 目录中,log4j2.xml 位于 conf/ 目录中。我执行了以下命令,它成功找到了配置。

java -Dlog4j.configurationFile=conf\log4j2.xml -jar log4j2test1-1.0-SNAPSHOT.jar

关于java - 使用可执行 JAR 时指定 Log4j2 配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28574905/

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