在公共 jar 文件中禁用 log4j
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
-Dlog4j.configuration=com/foo/bar/log4j.xml
启动 java 应用程序,以便使用特定的配置文件,覆盖 jar 中找到的配置文件,或者确保另一个 log4j.xml位于类路径的根目录,在 common.jar 之前: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: