项目中用到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 -->
时间: 2024-12-29 11:32:33