Spring使用Log4jConfigListener动态监听log4j.properties
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring使用Log4jConfigListener动态监听log4j.properties相关的知识,希望对你有一定的参考价值。
在web.xml上添加如下配置即可动态监听log4j.properties的变化
<!-- 需要监听的log4j文件地址 -->! <context-param> <param-name>log4jConfigLocation</param-name> <param-value>classpath:log4j.properties</param-value> </context-param> <!-- 监听log4j.properties --> <listener> <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class> </listener>
本文出自 “DeaconLi” 博客,请务必保留此出处http://lizhuquan0769.blog.51cto.com/2591147/1795877
以上是关于Spring使用Log4jConfigListener动态监听log4j.properties的主要内容,如果未能解决你的问题,请参考以下文章
Spring学习-----Spring使用@Autowired注解自动装配
Spring Framework,Spring Security - 可以在没有 Spring Framework 的情况下使用 Spring Security?