Using system environment variables in log4j xml configuration(在 log4j xml 配置中使用系统环境变量)
问题描述
是否可以在 log4j xml 配置文件中引用系统环境变量(相对于 Java 系统属性)?
Is it possible to reference system environment variables (as opposed to Java system properties) in a log4j xml configuration file?
我希望能够做类似的事情:
I'd like to be able to do something like:
<level value="${env.LOG_LEVEL}" />
并让它从系统环境变量中获取,这样我就可以避免使用 -D 参数传递这么多东西.
and have it get that from the system environment variables, so I can avoid having to pass in so many things with -D parameters.
推荐答案
此语法仅记录在 log4j 2.X 中,因此请确保您使用的是正确的版本.它不适用于 1.X 版本.
This syntax is documented only in log4j 2.X so make sure you are using the correct version. It does not work on the 1.X versions.
<Appenders>
<File name="file" fileName="${env:LOG_PATH}">
<PatternLayout>
<Pattern>%d %p %c{1.} [%t] %m %ex%n</Pattern>
</PatternLayout>
</File>
</Appenders>
这篇关于在 log4j xml 配置中使用系统环境变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 log4j xml 配置中使用系统环境变量


- 如何使用WebFilter实现授权头检查 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01