1. 程式人生 > >web項目 log4j2 指定配置文件路徑

web項目 log4j2 指定配置文件路徑

log4js config pid 2.x servle value art depend enc

pom.xml需要額外引入的jar:

         <dependency>
            <groupId>org.apache.logging.log4j</groupId>
            <artifactId>log4j-web</artifactId>
            <scope>runtime</scope>
        </dependency> 

web.xml:

    <context-param>
        <param-name>log4jConfiguration</param-name>
        <param-value>"log4j2.xml所在目錄"/log4j2.xml</param-value>
    </context-param>

    <listener>
        <listener-class>org.apache.logging.log4j.web.Log4jServletContextListener</listener-class>
    </listener>

web項目 log4j2 指定配置文件路徑