log4j2 替代 RollingFileAppender 以编程方式设置日志目录

发布于 2025-01-13 01:21:26 字数 498 浏览 0 评论 0原文

我们正在将 Java 应用程序从 log4j 1x 升级到 2x。

在 1x 中,我们在 log4j.properties 中指定了 RollingFileAppender 的扩展。除了滚动文件外,它还会根据是否运行在 JBoss/Tomcat/Webserver 中计算日志目录的路径,并以特定名称将日志归档到那里。

不可能将 RollingFileAppender 扩展为 2 倍。

我的问题是:我可以在 log4j2.properties(或 XML,如果需要)中指定什么,以便我像以前一样以编程方式设置日志目录,并滚动文件。

这与这个问题类似,但如果可能的话,不必为每个安装设置环境变量。

Log4j2使用rollingFileAppender自定义文件路径(Java)

We are upgrading our Java application from log4j 1x to 2x.

In 1x we had an extension to RollingFileAppender specified in log4j.properties. As well as rolling the files, it would compute the path of the logs directory according to whether it was running in JBoss/Tomcat/Webserver, and file the logs there with a specific name.

It is not possible to extend RollingFileAppender in 2x.

My question is: What can I specify in log4j2.properties (or XML if necessary) that will allow me to set the log directory programmatically as before, and roll the files.

It's something like this question, but without having to set up an Environment Variable for every installation, if possible.

Log4j2 customize file path with rollingFileAppender (Java)

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

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

发布评论

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

评论(1

红墙和绿瓦 2025-01-20 01:21:26

Log4j 2.x 的可扩展性非常好。在您的情况下,您可以编写 StrLookup 计算您需要的参数并对其进行注释:

@Plugin(name="some_prefix", category="Lookup")

该类必须使用 log4j-core 中的注释处理器进行编译和可以在配置文件中使用,如下所示:

${some_prefix:key}

其中 key 是将传递给 StrLookup#lookup

Log4j 2.x is very extensible. In your case you can write a StrLookup that computes the parameters you require and annotate it with:

@Plugin(name="some_prefix", category="Lookup")

The class must be compiled using the annotation processor in log4j-core and can be used in a configuration file as:

${some_prefix:key}

where key is the value that will be passed to StrLookup#lookup.

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