slf4j 与 log4j等日志系统

 
  • 网易首页
  • 网易博客
搜 索
登录 | 注册
bhsc.happy的博客
 
 
首页
日志
相册
音乐
收藏
博友
关于我
 
 
 
 
 
 
 
 
 
 
 
 
 
 

日志

 
 

Flex中的模块

AOP的术语

 

slf4j 2008-12-23 23:36

分类:Java
字号:    
 SLF4J不是具体的日志解决方案,它只服务于各种各样的日志系统。按照官方的说法,SLF4J是一个用于日志系统的简单Facade,允许最终用户在部署其应用时使用其所希望的日志系统。
  实际上,SLF4J所提供的核心API是一些接口以及一个LoggerFactory的工厂类。从某种程度上,SLF4J有点类似JDBC,不过比JDBC更简单,在JDBC中,你需要指定驱动程序,而在使用SLF4J的时候,不需要在代码中或配置文件中指定你打算使用那个具体的日志系统。如同使用JDBC基本不用考虑具体数据库一样,SLF4J提供了统一的记录日志的接口,只要按照其提供的方法记录即可,最终日志的格式、记录级别、输出方式等通过具体日志系统的配置来实现,因此可以在应用中灵活切换日志系统。
  1、什么情况可以使用
  如果你开发的是类库或者嵌入式组件,那么就应该考虑采用SLF4J,因为不可能影响最终用户选择哪种日志系统。在另一方面,如果是一个简单或者独立的应用,确定只有一种日志系统,那么就没有使用SLF4J的必要。假设你打算将你使用log4j的产品卖给要求使用JDK 1.4 Logging的用户时,面对成千上万的log4j调用的修改,相信这绝对不是一件轻松的事情。但是如果开始便使用SLF4J,那么这种转换将是非常轻松的事情。
  2、举例
  (1)代码
  import org.slf4j.Logger;
  import org.slf4j.LoggerFactory;
  public class Wombat {
  final Logger logger = LoggerFactory.getLogger(Wombat.class);
  Integer t;
  Integer oldT;
  public void setTemperature(Integer temperature) {
  oldT = t;
  t = temperature;
  Object[] objs = {new java.util.Date(), oldT, t};
  logger.info("Today is {}, Temperature set to {}. Old temperature was {}.", objs);
  if (temperature.intValue() > 50) {
  logger.warn("Temperature({}) has risen above 50 degrees.", t);
  }
  }
  public static void main(String[] args) {
  Wombat wombat = new Wombat();
  wombat.setTemperature(10);
  wombat.setTemperature(60);
  }
  }
  (2)使用SLF4J提供的simple log
  将以下jar包加入到项目中,然后执行
  slf4j-api-1.5.2.jar
  slf4j-simple-1.5.2.jar
  最终输出:
  32 [main] INFO Wombat - Today is Wed Sep 10 14:50:57 CST 2008, Temperature set to null. Old temperature was 10.
  32 [main] INFO Wombat - Today is Wed Sep 10 14:50:57 CST 2008, Temperature set to 10. Old temperature was 60.
  32 [main] WARN Wombat - Temperature(60) has risen above 50 degrees.
  (3)使用SLF4J提供的simple log
  将以下jar包加入到项目中,然后执行
  slf4j-api-1.5.2.jar
  slf4j-jdk14-1.5.2.jar
  最终输出:
  2008-9-10 15:01:20 Wombat setTemperature
  信息: Today is Wed Sep 10 15:01:20 CST 2008, Temperature set to null. Old temperature was 10.
  2008-9-10 15:01:20 Wombat setTemperature
  信息: Today is Wed Sep 10 15:01:20 CST 2008, Temperature set to 10. Old temperature was 60.
  2008-9-10 15:01:20 Wombat setTemperature
  警告: Temperature(60) has risen above 50 degrees.
  (4)配置很简单吧
  从以上事例可以看出,配置SLF4J使用那种日志系统是非常简单的一件事,只要将与你打算使用的日志系统对应的jar包加入到项目中,SLF4J就会自动选择使用你加入的那种日志系统。这种方法被称之为静态绑定。当然,该日志系统的相关类库是不能少,例如,如果你打算使用log4j,那么还需要log4j的类库,可能还有配置配置log4j.properties。
  3、格式化日志
  SLF4J还提供了格式化日志的功能,如事例中的语句:
  logger.info("Today is {}, Temperature set to {}. Old temperature was {}.", objs);
  4、日志系统绑定原理

  在应用中,通过LoggerFactory类的静态getLogger()获取logger。通过查看该类的代码可以看出,最终是通过StaticLoggerBinder.SINGLETON.getLoggerFactory()方法获取LoggerFactory然后,在通过该具体的LoggerFactory来获取logger的。类org.slf4j.impl.StaticLoggerBinder并不在slf4j-api-1.5.2.jar包中,仔细查看每个与具体日志系统对应的jar包,就会发现,相应的jar包都有一个org.slf4j.impl.StaticLoggerBinder的实现,不同的实现返回与该日志系统对应的LoggerFactory,因此就实现了所谓的静态绑定,达到只要选取不同jar包就能简单灵活配置的目的。

 


项目日志系统将会扔掉commons-logging和log4j,使用SLF4J全面接管,无障碍迁移。
优点:
超超超低依赖性
透明切换不同是日志实现方式
编译器绑定底层实现的方式,不会有classloader问题
性能更佳
已经Hibernate、Jetty、Spring-OSGi、Tapestry等项目中使用
完善又免费的文档
各个jar包功能:


slf4j-api-1.4.3.jar - 一定是要的,直接支持logback实现
jcl104-over-slf4j-1.4.3.jar - 使用common-loggin的接口,底层还是由SLF4J来决定哪种实现机制
slf4j-jcl-1.4.3.jar - 使用SLF4J的接口,底层由common-loggin实现(不能和jcl104-over-slf4j-1.4.3.jar同时使用)
slf4j-log4j12-1.4.3.jar - 使用SLF4J的接口,底层由log4j实现
slf4j-jdk14-1.4.3.jar - 使用SLF4J的接口,底层由java自身的日志系统实现


语法:
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Test {
final Logger logger = LoggerFactory.getLogger(Test.class);
public void hi() {
// 不再需要log.isDebugalbe(),代码更简洁
logger.debug(”hello {}”, “amsz”);
}
}


一、介绍:
简单日记门面(simple logging Facade for java)SLF4J是为各种loging APIs提供一个简单统一的接口,从而使得最终用户能够在部署的时候配置自己希望的loging APIs实现。 Logging API实现既可以选择直接实现SLF4J接的loging APIs如: NLOG4J、SimpleLogger。也可以通过SLF4J提供的API实现来开发相应的适配器如Log4jLoggerAdapter、 JDK14LoggerAdapter。在SLF4J发行版本中包含了几个jar包,如slf4j-nop.jar, slf4j-simple.jar, slf4j-log4j12.jar, slf4j-log4j13.jar, slf4j-jdk14.jar and slf4j-jcl.jar通过这些jar文件可以使编译期与具体的实现脱离。或者说可以灵活的切换
二、官方的网站:http://www.slf4j.org/manual.html
三、为何使用slf4j? :我们在开发过程中可能使用各种log,每个Log有不同的风格、布局,如果想灵活的切换那么slf4j是比较好的选择。


四、如何使用slf4j:下边一段程序是经典的使用slf4j的方法.
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class Wombat {
 final Logger logger = LoggerFactory.getLogger(Wombat.class);
 Integer t;
 Integer oldT;
 public void setTemperature(Integer temperature) {
 oldT = t;
 t = temperature;
 logger.error(“Temperature set to {}. Old temperature was {}.“, t, oldT);
 if (temperature.intValue() > 50) {
 logger.info(“Temperature has risen above 50 degrees.“);
 }
 }
 public static void main(String[] args) {
 Wombat wombat = new Wombat();
 wombat.setTemperature(1);
 wombat.setTemperature(55);
 }
}
下边介绍一下运行上边程序的过程。
1,编译上边的程序,需要classpath中加入slf4j-api-1.4.1.jar文件
2,运行时,需要classpath中加上slf4j-simple-1.4.1.jar 运行得到结果:这个是simple log风格,
3,切换:如果想切换到jdk14的log的风格,只需要把slf4j-simple-1.4.1.jar 从classpath中移除,同时classpath中加入slj4j-jdk14-1.4.1.jar 这时的运行结果已经变成jdk14的log风格了。
4,再次切换到log4j,同样移除slj4j-jdk14-1.4.1.jar,加入slf4j-log4j12-1.4.1.jar,同时加入log4j-1.2.x.jar 加入log4j.properties。得到显示结果:
这样,在不同的风格中切换只需要在部署期切换类库就可以了,和开发时无关。
跟commons-logging比不同在这里 :logger.error(”Temperature set to {}. Old temperature was {}.”, t, oldT); 这是其他Logger不支持的功能。以前我们都要这样写:logger.error(”Temperature set to “+t +”. Old temperature was “+oldT+”.” ); 也就是经常说为什么要加上log.isDebugalbe()判断的原因之一,这样做会减少字段串的合并,理解上减少JVM垃圾。

SLF4J的作者就是Log4j的作者,他正在开发logback来代替log4j,logback有更高的性能。logback支持上面提到的 logger.error(”Temperature set to {}. Old temperature was {}.”, t, oldT); 由于commons-logging没有提供类似的接口,SLF4J提供了,而且解决了classloader的问题。


InfoQ: LOGBack:Java日志的新进展 Logback是由log4j创始人设计的又一个开源日记组件。logback当前分成三个模块:logback-core,logback- classic和logback-access。logback-core是其它两个模块的基础模块。logback-classic是log4j的一个 改良版本。此外logback-classic完整实现SLF4J API使你可以很方便地更换成其它日记系统如log4j或JDK14 Logging。logback-access访问模块与Servlet容器集成提供通过Http来访问日记的功能。 该项目主页:http://logback.qos.ch 。关于LOGBack和SLF4J的更多信息请阅读Ceki的《十个转移到LOGBack的理由(PPT格式)》。至于配置文件,可以到http://logback.qos.ch/translator/Welcome.do 將你原來的log4j.properties轉成logback.xml ,就可以將commons-logging.jar 跟 log4j.jar自你系統中移除了。
本文来源于 冰山上的播客 http://xinsync.xju.edu.cn , 原文地址:http://xinsync.xju.edu.cn/index.php/archives/2355

 
 
最近读者

SOLI


分享(0) 
评论(0) 
81次阅读
 
 
     我要登录 ->
    
 
 
 
 
 
 
 
公司简介 - 联系方法 - 招聘信息 - 客户服务 - 相关法律 - 互动营销 -  
网易公司版权所有 ©1997-2009

{if coms != null && coms.length != 0} <div id="comShowHeader_${parentId}" class="g_h_20 g_c_mgin"> <span class="g_p_right g_c_hand n_ n7" style="margin-left:10px" onclick="${containerObjName}.closeComments('${parentId}');return false;" title="关闭">&nbsp;</span> <ul class="g_menu_09 g_w_at com_page"> <li> {if (coms != null) && (comCount > (commentRange * pageNum))} <a id="spnNextPage_${parentId}" class="g_c_noul c06" href="#" onclick="${containerObjName}.moveToPage(${pageNum} + 1, true);return false;">下页</a> {else}<span class="c09">下页</span>{/if} </li> <li><span class="ckck c07">${pageNum}/${totalPageNum}</span></li> <li> {if pageNum > 1} <a id="spnPrevPage_${parentId}" class="g_c_noul c06" href="#" onclick="${containerObjName}.moveToPage(${pageNum} - 1, true);return false;">上页</a> {else}<span class="c09">上页</span>{/if} </li> </ul> </div> <div class="g_p_hide g_c_mgin g_table" id="comShowContent_${parentId}"> {for com in coms} <table class="g_w_100 bd1b g_com_table" border="0" cellspacing="0" cellpadding="0"> <tr> <td class="layout_l"> {if com.publisherName != null && com.publisherName != ""} {if com.rtype != null && com.rtype == 0} <a href="http://photo.163.com/photo/${com.publisherName}" target="_blank"> <img class="g_img_04 g_c_hand bd01" id="imgPubPic_${com.id}" src="${com.publisherAvatar}" onerror="this.src='http://b.bst.126.net/style/common/stranger.gif'"/> </a> {else} <a href="http://${com.publisherName|parentDomain}${prefix}/" target="_blank"> <img class="g_img_04 g_c_hand bd01" id="imgPubPic_${com.id}" src="http://os.blog.163.com/common/ava.s?host=${com.publisherName|escape}&b=0&t=660" onerror="this.src='http://b.bst.126.net/style/common/stranger.gif'"/> </a> {/if} <div class="g_t_hide nick"><a id="aComPubName_${com.id}" class="g_p_block g_h_20 c05" {if com.rtype != null && com.rtype == 0} href="http://photo.163.com/photo/${com.publisherName}" {else} href="http://${com.publisherName|parentDomain}${prefix}/" {/if} title="${com.publisherNickname|escape}" target="_blank"> {if com.publisherId == hostId}<span class="n_ m9com" title="博主">&nbsp;</span>{/if}${com.publisherNickname|escape}</a></div> {else} <span class="g_p_block g_h_20 g_t_hide g_w_100 c08 t_12">${com.publisherNickname|escape}</span> <div class="c09 g_w_95 t_12" style="padding-top:8px">${com.ipName}</div> {/if} </td> <td class="layout_r"> <table class="g_w_100"> <tr> <td class="t"><div class="c g_t_wrap c07" id="comContent${com.id}">${com.content}</div></td> </tr> <tr> <td colspan="3" class="b"> {if supportDeleteComment == true && visitorId == hostId} <a class="c06 g_p_right g_c_ul" id="delcomm_${com.id}" onclick="${containerObjName}.deleteComment('${com.id}');return false;" href="#">删除</a> <nobr class="bd1c g_p_right md">&nbsp;|&nbsp;</nobr> {/if} {if noCommentRight == false} {if com.publisherName != null && com.publisherName != ""} <a id="comReply_${com.id}" class="c06 g_p_right g_c_ul " onclick="${containerObjName}.reply('${com.id}',true,'${com.publisherNickname|escape|js_string}','${com.publisherName|parentDomain}${prefix}','${com.publisherId}', '${com.publisherName|escape|js_string}');return false;" href="#">回复</a> {else} <a id="comReply_${com.id}" class="c06 g_p_right g_c_ul " onclick="${containerObjName}.reply('${com.id}',false,'${com.publisherNickname|escape|js_string}','${com.ipName}', '', '');return false;" href="#">回复</a> {/if} {/if} <span class="g_p_right c09 tim md"> ${NetEase.DateTime.formatRecentDate(com.publishTime,"yyyy-MM-dd HH:mm")}</span> {if !isHomeModule && com.circleId>0}<span class="g_p_left c09">来源: <span class="c06">[</span><a class="c06" href="${circleBaseUrl}/${com.circleUrlName}/" target="_blank">${com.circleName}</a><span class="c06">]</span></span>{/if} </td> </tr> </table> </td> </tr> </table> {/for} </div> <div class="g_h_20 bd1b g_c_mgin"> <ul class="g_menu_09 g_w_at com_page"> <li> {if (coms != null) && (comCount > (commentRange * pageNum))} <a id="spnNextPage_${parentId}" class="g_c_noul c06" href="#" onclick="${containerObjName}.moveToPage(${pageNum} + 1, true);return false;">下页</a> {else}<span class="c09">下页</span>{/if} </li> <li><span class="ckck c07">${pageNum}/${totalPageNum}</span></li> <li> {if pageNum > 1} <a id="spnPrevPage_${parentId}" class="g_c_noul c06" href="#" onclick="${containerObjName}.moveToPage(${pageNum} - 1, true);return false;">上页</a> {else}<span class="c09">上页</span>{/if} </li> </ul> </div> {else} {if noCommentRight == false} <div id="comShowHeader_${parentId}" class="g_h_20 g_c_mgin"> <span class="g_p_right g_c_hand n_ n7" onclick="${containerObjName}.closeComments('${parentId}');return false;" title="关闭" >&nbsp;</span> </div> {/if} {/if} <div class="g_c_pdin"> {if (noCommentRight == true)} <div class="loginsection"> {if allowComment == 0} <span class="n_ n21">&nbsp;</span>登录后你可以发表评论,请先登录。&nbsp;&nbsp;&nbsp;</span><a href="#" onclick="showLoginDlg(DomainMap.serverHostName);return false;">登录&gt;&gt;</a> {elseif allowComment == 100} {if visitorRank==-100} <span class="n_ n21">&nbsp;</span>登录并添加博主为博友、通过对方确认后可以发表评论,请先登录。&nbsp;&nbsp;&nbsp;<a href="#" onclick="showLoginDlg(DomainMap.serverHostName);return false;">登录&gt;&gt;</a> {elseif visitorRank ==0} <span class="n_ n21">&nbsp;</span>添加博主为博友、通过对方确认后可以发表评论,请先加为博友。&nbsp;&nbsp;&nbsp;<a id="AComment${parentId}" href="#" onclick="pageTopBar.showAddFriend();return false;">加为博友&gt;&gt;</a> {/if} {elseif allowComment == 10000} <span class="n_ n21">&nbsp;</span>该内容仅供欣赏。 {/if} </div> {else} <div> {if visitorRank <= -100} <div class="g_layout_05 g_h_25 g_t_left" style="margin-bottom:7px;"> <input type="text" id="username${parentId}" style="width:170px;" class="bd01 g_t_disable nvb g_c_input" name="username${parentId}" value="${userName}" maxlength="18"/>&nbsp;&nbsp;&nbsp;&nbsp; <a class="c06" href="#" onclick="showLoginDlg(DomainMap.serverHostName);return false;">我要登录&nbsp;-&gt;</a> </div> {else} <div class="g_layout_05"> <div class="l g_t_left"> {if visitorAvatarDefault == true} <img class="g_img_04 bd01" src="${formatImageUrl(defaultVisitorAvatarUrl)}" onerror="this.src='http://b.bst.126.net/style/common/stranger.gif'" width="60px" height="60px" title="显示头像"> {else} <img class="g_img_04 bd01" src="${formatImageUrl(visitorAvatar)}" onerror="this.src='http://b.bst.126.net/style/common/stranger.gif'" width="60px" height="60px" title="显示头像"> {/if} </div> <div class="g_t_left"><input class="bd01 g_t_disable vb g_c_input" style="width:170px;" id="username${parentId}" name="username${parentId}" value="${userName}" type="text" maxlength="18"/></div> <div class="g_p_clear g_t_space">&nbsp;</div> </div> {/if} <div class="g_c_smvdn bd01" id="edt${parentId}"></div> <div id="validCode${parentId}" class="g_c_mvdn g_t_left g_h_25" style="display:none;"></div> <div class="g_h_30 g_c_mvdn g_t_left g_w_100"> <input class="g_c_button bd01 butn" id="$$_pubbtn${parentId}" onclick="${containerObjName}.addComment('${parentId}'); return false;" type="submit" {if disabled == true}disabled="true" {/if} value="发表评论" {if hasCancelBtn==false}style="font-weight:700;"{/if}/>&nbsp;&nbsp; {if hasCancelBtn}<input class="g_c_button bd01 butn" id="$$_comcancelbtn${parentId}" onclick="${containerObjName}.closeComments('${parentId}');return false;" type="submit" {if disabled == true}disabled="true" {/if} value="取 消"/>{/if}&nbsp;&nbsp; <span id="$$_comsubmithint${parentId}" style="display:none;"></span> </div> </div> {/if} </div>

你可能感兴趣的:(log4j,ClassLoader,Integer,Class,div,slf4j)