web项目 log4j2的路径问题
Posted 小LUA
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web项目 log4j2的路径问题相关的知识,希望对你有一定的参考价值。
项目中用到log4j2记录日志,结果运行的时候总也不见log文件的产生。
查看官方文档得知,在web项目中使用log4j2需要加入log4j-web包
log4j2.xml
<?xml version="1.0" encoding="UTF-8"?> <Configuration monitorInterval="1800"> <Appenders> <File name="file" fileName="${web:rootDir}/WEB-INF/logs/test.log" append="false"> <ThresholdFilter level="trace" onMatch="ACCEPT" onMismatch="DENY"/> <PatternLayout pattern="%d{yyyy-MM-dd HH:mm:ss,SSS} [%t] %-5level %logger{36} - %msg%n"/> </File> </Appenders> <Loggers> <Root level="trace"> <AppenderRef ref="file"/> </Root> </Loggers> </Configuration>
web.xml
<!-- log4j2 --> <context-param> <param-name>log4jConfiguration</param-name> <param-value>classpath:log4j2.xml</param-value><!-- 我把配置文件放在src里面了 --> </context-param> <listener> <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class> </listener> <!-- log4j2 -->
以上是关于web项目 log4j2的路径问题的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot2.0 基础案例(02):配置Log4j2,实现不同环境日志打印
SpringBoot2.0 基础案例(02):配置Log4j2,实现不同环境日志打印
maven web项目的web.xml报错The markup in the document following the root element must be well-formed.(代码片段