如何在log4j.xml中读取.properties文件

时间:2017-08-27 16:18:10

标签: java xml properties log4j2

我想在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文件?

0 个答案:

没有答案