码迷,mamicode.com
首页 > 其他好文 > 详细

log4j介绍

时间:2019-03-31 16:57:40      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:方式   property   public   resource   context   ati   inter   技术   interval   

log4j.properties文件的三种加载方式

1.spring默认自动加载

  满足以下条件时:

    1).配置文件名为log4j.properties

    2).在classpath根目录下(即resources根目录下)

  spring会自动加载log4j.properties文件,无需显式加载.

2.spring手动加载

  使用spring提供的Log4jConfigListener,在web.xml中加载配置文件

技术图片
<!-- 设置Log4j配置文件位置 -->
<context-param> 
  <param-name>log4jConfigLocation</param-name> 
  <param-value>classpath:properties/log4j.properties</param-value> 
</context-param> 
 <!-- 刷新Log4j配置文件变动的间隔,单位为毫秒 -->
<context-param> 
  <param-name>log4jRefreshInterval</param-name> 
  <param-value>10000</param-value> 
</context-param> 
<!-- 监听器要写在下边 -->
<listener> 
  <listener-class>org.springframework.web.util.Log4jConfigListener</listener-class> 
</listener> 
View Code

3.在类中加载配置文件

技术图片
public  class TestLog4j  {
  public  static  void main(String[] args)  {
    PropertyConfigurator.configure( " D:/Code/conf/log4j.properties " );
    Logger logger = Logger.getLogger(TestLog4j. class );
    logger.debug( " debug " );
    logger.error( " error " );
  } 
} 
View Code

 

log4j介绍

标签:方式   property   public   resource   context   ati   inter   技术   interval   

原文地址:https://www.cnblogs.com/jinyu59/p/10631959.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!