Difference between Simple Logging Facade for Java

2019-03-09 08:29发布

3条回答
贪生不怕死
2楼-- · 2019-03-09 08:58

Logging Facade|Framework|AbstractionLayer
(facade-The word comes from the French language, literally meaning "frontage" or "face".)

Definition- Logging Facade
Logging Facade is a abstraction for various logging frameworks, e.g. java.util.logging, log4j and logback, allowing the end user to plug in the desired logging framework at deployment time.

Simple Logging Facade(SLF4J) is a abstract logging framework like JCL(jakarta-commons-logging). And JCL is also called as Apache Commons Logging

Also note that commons-io(apache io -utilities) is different from commons-logging(logging facade)

查看更多
小情绪 Triste *
3楼-- · 2019-03-09 09:14

From the SLF4J FAQ:

SLF4J is conceptually very similar to JCL. As such, it can be thought of as yet another logging facade. However, SLF4J is much simpler in design and arguably more robust. In a nutshell, SLF4J avoid the class loader issues that plague JCL.

Do a google for "JCL classloader issues" for more on this...

查看更多
迷人小祖宗
4楼-- · 2019-03-09 09:20

While SLF4J can be used as a facade over libraries like Log4j, or JUL, it can also be used as an API to implement native logging libraries, like Logback did. A native SLF4J library won't need adapter glue in the middle like the facade for Log4j or JUL does, so it should be more efficient as well.

查看更多
登录 后发表回答