log4j介绍
程序员文章站
2024-02-01 17:31:28
log4j.properties文件的三种加载方式 1.默认自动加载 满足以下条件时: 1).配置文件名为log4j.properties 2).在classpath根目录下(即resources根目录下) spring会自动加载log4j.properties文件,无需显式加载. 参考文章 : h ......
log4j.properties文件的三种加载方式
1.默认自动加载
满足以下条件时:
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>
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 " ); } }