在公共 jar 文件中禁用 log4j

发布于 2024-12-04 17:56:18 字数 306 浏览 0 评论 0原文

我的 log4j.xml 有问题。我在我的独立应用程序中使用一个常见的 jar。 common jar 有自己的 log4j.xml 文件。问题是我的 Unix 服务器没有在通用 jar log4j.xml 文件中指定的文件结构,因此当它尝试创建日志文件时,我收到文件未找到错误。 我尝试通过在应用程序中编写新的 log4j.xml 文件来覆盖 log4j.xml 文件。但常见的 jar 仍然使用其自己的 log4j 配置。我正在使用 shell 脚本运行我的应用程序。您能否帮助从 java 端或任何 shell 脚本命令禁用或覆盖公共 jar 中的 log4 配置。

谢谢。

I have problem with log4j.xml. I am using one common jar in my standalone application. The commom jar has its own log4j.xml file. The problem is my Unix server is not having the file structure specified in the common jar log4j.xml file so i am getting file not found error , when it tries to create log file.
I have tried to override the log4j.xml file by writing a new log4j.xml file in my application. But still common jar is using its own log4j configuration. I am running my Application using a shell script. Can you please help in disabling or overriding log4 configuration in the common jar .either from java side or any shell script command.

Thank you.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放血 2024-12-11 17:56:18

使用 -Dlog4j.configuration=com/foo/bar/log4j.xml 启动 java 应用程序,以便使用特定的配置文件,覆盖 jar 中找到的配置文件,或者确保另一个 log4j.xml位于类路径的根目录, common.jar 之前:

java -cp aDirectoryContainingLog4jXml;common.jar com.foo.bar.Main

Start the java application with -Dlog4j.configuration=com/foo/bar/log4j.xml in order to use a specific config file, overriding the one found in your jar, or make sure another log4j.xml is at the root of the classpath, before common.jar:

java -cp aDirectoryContainingLog4jXml;common.jar com.foo.bar.Main
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文