使用可执行 JAR 时指定 Log4j2 配置文件
我在使用可执行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清单文件中的类路径中:
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在其内部和文件的类路径中包含和JAR,也存在问题。我编写 ant 文件以将库合并到我正在创建的单个 JAR 中的方式是成功复制目录和类文件,但由于某种原因没有复制其他类型,这些类型显然也是必要的(例如 Log4j-config.xsd、Log4j-events.dtd等)。log4j-core-2.1.jar
log4j-api-2.1.jar
MANIFEST
为了解决这个问题,我将 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中。
解决此问题后,我上面发布的第二个命令可用于指定配置文件的位置。(如下所述,第一个命令将不起作用,因为在 JAR 中指定的类路径将覆盖命令行上指定的任何类路径。@rewolf
MANIFEST
感谢您的回复,他们绝对帮助我走上了正确的道路,找出了我的错误。