slf4j简介
<转自 http://callan.iteye.com/blog/600635>
SLF4J不是具体的日志解决方案,它只服务于各种各样的日志系统。按照官方的说法,SLF4J是一个用于日志系统的简单Facade,允许最终用户在部署其应用时使用其所希望的日志系统。而在使用SLF4J的时候,不需要在代码中或配置文件中指定你打算使用那个具体的日志系统,SLF4J提供了统一的记录日志的接口,只要按照其提供的方法记录即可,最终日志的格式、记录级别、输出方式等通过具体日志系统的配置来实现,因此可以在应用中灵活切换日志系统。
使用方式
在系统开发中,统一按照slf4j的API进行开发,在部署时,选择不同的日志系统包,即可自动转换到不同的日志系统上。比如:选择JDK自带的日志系统,则只需要将slf4j-api-1.5.10.jar和slf4j-jdk14-1.5.10.jar放置到classpath中即可,如果中途无法忍受JDK自带的日志系统了,想换成log4j的日志系统,仅需要用slf4j-log4j12-1.5.10.jar替换slf4j-jdk14-1.5.10.jar即可(需要log4j的jar及配置文件log4j.properties文件),也可以使用slg4j提供的simple log,slf4j-simple-1.5.10.jar替换slf4j-jdk14-1.5.10.jar。
举例
- package com.test;
- import org.slf4j.Logger;
- import org.slf4j.LoggerFactory;
- public class Slf4jTest {
- // 统一按照slf4j的API进行开
- Logger logger = LoggerFactory.getLogger(Slf4jTest.class);
- public void testLog(){
- logger.info("this is a test log");
- }
- public static void main(String[] args) {
- Slf4jTest slf = new Slf4jTest();
- slf.testLog();
- }
- }
package com.test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class Slf4jTest { // 统一按照slf4j的API进行开 Logger logger = LoggerFactory.getLogger(Slf4jTest.class); public void testLog(){ logger.info("this is a test log"); } public static void main(String[] args) { Slf4jTest slf = new Slf4jTest(); slf.testLog(); } }
(1)使用JDK自带的log输出
在classpath中加入slf4j-api-1.5.10.jar和slf4j-jdk14-1.5.10.jar两个包,然后运行main函数,输出信息如下:
- 2010-2-23 11:57:28 com.test.Slf4jTest testLog
- 信息: this is a test log
2010-2-23 11:57:28 com.test.Slf4jTest testLog 信息: this is a test log
(2)使用slg4j提供的simple log
slf4j-simple-1.5.10.jar替换slf4j-jdk14-1.5.10.jar,选择使用slf4j提供的simple log,输出信息如下:
- 0 [main] INFO com.test.Slf4jTest - this is a test log
0 [main] INFO com.test.Slf4jTest - this is a test log
(3)log4j日志输出
用slf4j-log4j12-1.5.10.jar替换slf4j-simple-1.5.10.jar(记得classpath也需要增加log4j依赖jar包),同时增 加一个log4j.properties文件
我们需要修改下main方法,加载一下log4j.properties,如;
- public static void main(String[] args) {
- System.setProperty("log4j.configuration", "log4j.properties");
- Slf4jTest slf = new Slf4jTest();
- slf.testLog();
- }
public static void main(String[] args) { System.setProperty("log4j.configuration", "log4j.properties"); Slf4jTest slf = new Slf4jTest(); slf.testLog(); }
这样就可以以log4j的方式输出了。