我有多个Log4j2配置yaml文件。
我的问题是,是否可以将通用配置属性移动到其他log4j2配置将使用的一个yaml文件中?
结构为:
/resources:
--log4j2-sb.yml
--log4j2-sb-file.yml
我如何添加即:
--log4j-sb-common-properties.yml
包含的
Configuration:
properties:
property:
- name: "com.example.logs.directory"
value: "/logs"
.
.
.
目前,我已向每个yml文件添加了属性,但我想将它们分开。