我想在log4j2.xml文件中使用.properties文件的值。
但是log4j2.xml不能使用bean元素,以下方法是错误的
<bean class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<list>
<value>classpath:config.properties</value>
<value>classpath:database.properties</value>
</list>
</property>
</bean>
有没有办法在log4j.xml中加载.properties文件?