web项目 log4j2 指定配置文件路径
Posted 邱明成
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web项目 log4j2 指定配置文件路径相关的知识,希望对你有一定的参考价值。
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 指定配置文件路径的主要内容,如果未能解决你的问题,请参考以下文章