- 浏览: 381933 次
- 来自: 北京
-
文章分类
- 全部博客 (237)
- XML (6)
- JavaSE (39)
- Junit (1)
- Maven (10)
- JavaScript (12)
- JavaEE (16)
- HTML5 (10)
- java多线程 (8)
- Hibernate (30)
- Java反射 (3)
- Spring (11)
- Struts (1)
- svn (2)
- linux (12)
- 代码实例 (1)
- 设计模式 (1)
- UML (1)
- javassist (1)
- Oracle (3)
- Hibernate异常 (9)
- DWR (6)
- Java泛型 (2)
- SpringMVC (11)
- Dbunit (3)
- github (2)
- Algorithm (1)
- zTree (1)
- jquery (7)
- freemarker (4)
- mysql (5)
- ffmpeg (1)
- 编码 (1)
- lucene (15)
- hadoop (1)
- JVM (1)
- Regular Expressions (5)
- myeclipse (1)
- 爬虫 (7)
- 加密 (3)
- WebService (2)
- Socket (2)
- Windows (1)
最新评论
-
wxpsjm:
好直接
HV000030: No validator could be found for type: java.lang.Integer. -
wxhhbdx:
学习了,对新手来说很不错的教程。
SpringMVC入门 (二) 数值传递 -
xgcai:
正好在学dwr
DWR入门 (二)用户实例
首先要下载官网的jar包以及说明文档文件。
文件里包含了log4j.properties,该文件用于配置日志信息,级别操作。
http://archive.apache.org/dist/logging/log4j/1.2.16/
下面是log4j的helloworld实例。
1. 导入log4j.jar包。
2. 创建HelloLog4j.java
直接运行以上代码, 会有以下console信息:
hello log4j
log4j:WARN No appenders could be found for logger (com.lj.log4j.HelloLog4J).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
这是因为我们没有导入所谓的'appender', 也就是log4j.properties文件。
因此我们需要在classpath路径下创建一个log4j.properties文件。
3. 创建log4j.properties:
再次运行HelloLog4j,我们就会看到不同的Console信息:
hello log4j
[main] DEBUG com.lj.log4j.HelloLog4J - In the main method
[main] INFO com.lj.log4j.HelloLog4J - This is info message
[main] ERROR com.lj.log4j.HelloLog4J - This is error message
这里就输出了我们所期待的信息。
[main]表示我们是在main函数当中运行的这个代码.
DEBUG, INFO, ERROR表示不同的log级别。
com.lj.log4j.HelloLog4J是包+类名信息。
最后输出log信息。
4. 设置log级别
在上面的例子中,我们所设置的log输出级别是debug->log4j.rootLogger=debug,appender1
这里我们可以修改log级别,例如设置为info,可以看到以下的输出内容:
hello log4j
[main] INFO com.lj.log4j.HelloLog4J - This is info message
[main] ERROR com.lj.log4j.HelloLog4J - This is error message
也就是说,debug信息就没了。
原因是log4j的信息输出是要根据级别的, debug和info的级别是debug<info.
而只有高于所设定的级别的信息才会被输出。
因此这里的debug就会被屏蔽掉了。
假如我们将输出级别设置为error, 那么这次就只有error信息会被输出了
[main] ERROR com.lj.log4j.HelloLog4J - This is error message
原因是info的级别要小于我们设定的error级别。
总体来说log4j的级别顺序如下:
DEBUG < INFO < WARN < ERROR < FATAL
简而言之, 当设定为debug的时候,所有log4j的信息都会被输出。
而设定为fatal时, 就只有logger.fatal里面的信息会被输出。
文件里包含了log4j.properties,该文件用于配置日志信息,级别操作。
http://archive.apache.org/dist/logging/log4j/1.2.16/
下面是log4j的helloworld实例。
1. 导入log4j.jar包。
2. 创建HelloLog4j.java
public class HelloLog4J { private static Logger logger=Logger.getLogger(HelloLog4J.class); public static void main(String[] args) { System.out.println("hello log4j"); logger.debug("In the main method"); logger.info("This is info message"); logger.error("This is error message"); } }
直接运行以上代码, 会有以下console信息:
hello log4j
log4j:WARN No appenders could be found for logger (com.lj.log4j.HelloLog4J).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info.
这是因为我们没有导入所谓的'appender', 也就是log4j.properties文件。
因此我们需要在classpath路径下创建一个log4j.properties文件。
3. 创建log4j.properties:
#set log level to debug level. log4j.rootLogger=debug,appender1 #set the log appender of the information. In this case, it is set as Console. log4j.appender.appender1=org.apache.log4j.ConsoleAppender #set the layout of the log informaton log4j.appender.appender1.layout=org.apache.log4j.TTCCLayout
再次运行HelloLog4j,我们就会看到不同的Console信息:
hello log4j
[main] DEBUG com.lj.log4j.HelloLog4J - In the main method
[main] INFO com.lj.log4j.HelloLog4J - This is info message
[main] ERROR com.lj.log4j.HelloLog4J - This is error message
这里就输出了我们所期待的信息。
[main]表示我们是在main函数当中运行的这个代码.
DEBUG, INFO, ERROR表示不同的log级别。
com.lj.log4j.HelloLog4J是包+类名信息。
最后输出log信息。
4. 设置log级别
在上面的例子中,我们所设置的log输出级别是debug->log4j.rootLogger=debug,appender1
这里我们可以修改log级别,例如设置为info,可以看到以下的输出内容:
hello log4j
[main] INFO com.lj.log4j.HelloLog4J - This is info message
[main] ERROR com.lj.log4j.HelloLog4J - This is error message
也就是说,debug信息就没了。
原因是log4j的信息输出是要根据级别的, debug和info的级别是debug<info.
而只有高于所设定的级别的信息才会被输出。
因此这里的debug就会被屏蔽掉了。
假如我们将输出级别设置为error, 那么这次就只有error信息会被输出了
[main] ERROR com.lj.log4j.HelloLog4J - This is error message
原因是info的级别要小于我们设定的error级别。
总体来说log4j的级别顺序如下:
DEBUG < INFO < WARN < ERROR < FATAL
简而言之, 当设定为debug的时候,所有log4j的信息都会被输出。
而设定为fatal时, 就只有logger.fatal里面的信息会被输出。
发表评论
-
webservice获取访问服务的ip地址
2014-08-11 16:02 20081. 首先注入javax.xml.ws.WebServiceC ... -
java.lang.IllegalStateException: ServletConfig has not been initialized
2014-08-06 13:04 3012java.lang.IllegalStateException ... -
Character reference "�" is an invalid XML character.
2014-07-10 18:35 2160org.xml.sax.SAXParseException: ... -
jquery.validate.js的错误信息显示位置
2014-03-04 14:04 2279问题描述: 如图所示, 这里的代码是: <tr ... -
IE下的li:hover问题解决
2014-02-19 22:26 913当在css中设定li:hover{cursor:pointer ... -
HV000030: No validator could be found for type: java.lang.Integer.
2014-01-11 12:58 6811http://stackoverflow.com/questi ... -
图片压缩
2014-01-05 22:42 0package org.konghao.basic.util; ... -
[转]Access restriction:The type JPEGCodec is not accessible due to restriction on
2014-01-05 22:23 925Access restriction:The type JPE ... -
uploadify上传文件实例
2014-01-05 12:35 1340以Maven和SpringMVC为例。 1. 上官网http ... -
jsp include page <jsp:param value="val" name="n"/>
2013-12-18 22:09 1157<jsp:include page="/jsp ... -
log4j 关于rootLogger以及一些问题
2013-12-17 12:56 1854今天遇到的一些问题。 package com.lj.b ... -
dbunit错误:non-uppercase input column:xx in ColumnNameToIndexes cache map
2013-12-14 18:06 3324testLoad(com.lj.core.dao.Test ... -
log4j 入门实例 (三) 输出布局(layout)
2013-12-12 20:46 897log4j提供了以下几种layou ... -
log4j 入门实例 (二) 输出到文件以及网页
2013-12-12 17:41 1057这里先讲如何将log4j的日志信息输出到文本文件。 1. ... -
JPA初步学习
2013-10-29 17:33 0这两天在写一个ORM方法。 实现类对象和XML文件的mappi ... -
使用jackson生成json对象的实例
2013-10-24 11:25 3765这里写了一个将json和Java的Object对象进行互相转换 ... -
Servlet从硬盘读取图片并传送到前台
2013-10-21 20:39 1527public void doGet(HttpServletR ...
相关推荐
private static final Logger logger = Logger.getLogger(HelloLog4j.class); public static void main(String[] args) { logger.debug("This is a debug message."); ***("This is an info message."); logger...
[main] ERROR com.coderdream.log4j.HelloLog4j - This is error message. ``` #### 3. Log4j的构成 Log4j的基本组成包括以下几个部分: - **Logger**:负责记录日志信息的对象。 - **Appender**:指定日志信息的...
private static Logger logger = Logger.getLogger(HelloLog4j.class); public static void main(String[] args) { // 记录debug级别的信息 logger.debug("This is debug message."); // 记录info级别的信息 ...
创建一个简单的Java类`HelloLog4j`,该类中使用了`Logger`类来记录不同级别的日志信息。 ```java package test; import org.apache.log4j.Logger; public class HelloLog4j { private static Logger logger = ...
[main] DEBUG com.coderdream.log4j.HelloLog4j - This is debug message. [main] INFO com.coderdream.log4j.HelloLog4j - This is info message. [main] ERROR com.coderdream.log4j.HelloLog4j - This is error ...
在这个例子中,我们创建了一个名为`HelloLog4j`的类,并在其中使用了Logger对象来记录不同级别的日志信息。 ```java import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger; ...