SpringBoot裡slf4j日誌功能的預設實現

i042416發表於2020-02-21

本文是這篇教程的學習筆記:

Logging with Spring Boot - Logback, SLF4j and LOG4j2

我有一個最簡單的SpringBoot應用,其pom.xml裡的依賴定義如下:

SpringBoot裡slf4j日誌功能的預設實現


上圖看到很多Starter,比如Spring-boot-starter-data-redis, Spring-boot-starter-web等等。這些Starter都包含了一個spring-boot-starter, 而這個starter又包含了一個實現logging的starter,叫做spring-boot-starter-logging.

SpringBoot裡slf4j日誌功能的預設實現



也就是說,如果我們使用SpringBoot,無需再匯入額外的配置,就能使用日誌功能了。


SpringBoot slf4j的預設實現是logback,預設輸出是到控制檯console:


As you can see the default logging framework is Logback with SLF4j as implementation.

By default, all logging goes to console.


在Application.properties檔案裡使用logging.level.root配置專案全域性的日誌級別:

SpringBoot裡slf4j日誌功能的預設實現



當然要針對個別包進行日誌級別的分別配置也是可以的:

logging.level.some.package.path=DEBUG

logging.level.some.other.package.path=ERROR

SpringBoot裡slf4j日誌功能的預設實現

Custom configuration using logback.xml

Spring Boot will pick up all custom configuration using logback.xml as long as it is in the application class path.


將日誌寫入本地日誌檔案的做法:

SpringBoot裡slf4j日誌功能的預設實現


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24475491/viewspace-2676506/,如需轉載,請註明出處,否則將追究法律責任。

相關文章