配置log4j日志动态加载(不重启服务)

原文地址:http://blog.csdn.net/lk_blog/article/details/50618471

状态:测试通过,内容有效


方法一:使用spring提供的配置

参考文章:http://www.tuicool.com/articles/nuUVZr

http://blog.csdn.net/javaloveiphone/article/details/7994313
此方法在spring4.x的版本中都可以使用,但在Spring 4.2.1中已经将其标记为过时了.如果使用spring4.2.1以上的版本又会造成不兼容

Log4jConfigListener必须要在Spring的Listener之前。

web.xml

[html]  view plain  copy
 
  1.   
  2. <context-param>   
  3.     <param-name>log4jConfigLocationparam-name>   
  4.     <param-value>WEB-INF/classes/log4j.propertiesparam-value>   
  5. context-param>   
  6.     
  7. <context-param>   
  8.     <param-name>log4jRefreshIntervalparam-name>   
  9.     <param-value>10000param-value>   
  10. context-param>   
  11.    
  12. <listener>   
  13.     <listener-class>org.springframework.web.util.Log4jConfigListenerlistener-class>   
  14. listener>  



方法二:

使用log4j提供的方法自定义类并引入到spring中.
 
   
[html] view plain copy
  1.   
  2. <bean class="com.upcloud.web.util.Log4jConfig">  
  3.     <constructor-arg name="reload" value="true"/>  
  4.     <constructor-arg name="interval" value="60000"/>  
  5. bean>  
代码如下:
 
   
[java] view plain copy
  1. package com.upcloud.web.util;  
  2.   
  3. import org.apache.log4j.PropertyConfigurator;  
  4. import org.slf4j.Logger;  
  5. import org.slf4j.LoggerFactory;  
  6.   
  7. public class Log4jConfig {  
  8.     private boolean reload = true;  
  9.     private int interval = 60000;  
  10.     private static final Logger logger = LoggerFactory.getLogger(Log4jConfig.class);  
  11.   
  12.     /** 
  13.      * log4j日志自动加载 
  14.      * 
  15.      * @param reload   是否开启自动加载 
  16.      * @param interval 自动加载时间(ms) 
  17.      */  
  18.     public Log4jConfig(boolean reload, int interval) {  
  19.         this.reload = reload;  
  20.         this.interval = interval;  
  21.         this.loadConfig();  
  22.     }  
  23.   
  24.     public void loadConfig() {  
  25.         String log4jPath = Log4jConfig.class.getClassLoader().getResource("log4j.properties").getPath();  
  26.         logger.debug("log4j file path: " + log4jPath);  
  27.   
  28.         // 间隔特定时间,检测文件是否修改,自动重新读取配置  
  29.         PropertyConfigurator.configureAndWatch(log4jPath, this.interval);  
  30.     }  
  31. }  

你可能感兴趣的:(log4j)