前面有一篇日誌中簡單的介紹了 log4j,同時也介紹了它與commons-logging的關係,可是忽然冒出來一個slf4j,而且slf4j有取代commons-logging的趨勢,因此,咱們能夠推知slf4j與commons-logging的做用應該java
相差不大的。 好,下面開始先講講slf4j。apache
1.slf4japi
他只提供一個核心slf4j api(就是slf4j-api.jar包),這個包只有日誌的接口,並無實現,因此若是要使用就得再給它提供一個實現了些接口的日誌包,比 如:log4j,common logging,jdk log日誌實現包等,可是這些日誌實現又不能經過接口直接調用,實現上他們根本就和slf4j-api不一致,所以slf4j又增長了一層來轉換各日誌實 現包的使用,固然slf4j-simple除外。工具
slf4j+log4j組合使用模式:日誌
1. slf4j-api-1.5.11.jar 2. slf4j-log4j12-1.5.11.jar 3. log4j-1.2.15.jar 4. log4j.properties(也能夠是 log4j.xml)
JCL+Log4J組合使用模式(即commons-logging+log4j):code
1. commons-logging-1.1.jar 2. log4j-1.2.15.jar 3. log4j.properties
2.不一樣的獲取logger的方式xml
log4j:接口
import org.apache.log4j.Logger; Logger logger= Logger.getLogger(xx.class);
slf4j+log4j:get
import org.slf4j.Logger; import org.slf4j.LoggerFactory; Logger logger = LoggerFactory.getLogger(xx.class);
jcl+log4j:class
import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; private static Log log = LogFactory.getLog(xx.class);
注意:common-longing是默認支持log4j的,使用其餘日誌工具須要作下面的配置:common-logging.properties
org.apache.commons.logging.Log=org.apache.commons.logging.impl.Log4JCategoryLog
3.總結
總的來講,slf4j與commons-logging只是一個日誌門面,實際仍是要依賴真正的日誌庫log4j,雖然slf4j和commons-loggins自帶了日誌庫,可是畢竟log4j纔是最強大的。