Mongoosej.Blog.Software.Programing Language.Framework.Utils.Log.SLF4J :::info 版权声明:本文为语雀博主「mongoosej」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://www.yuque.com/mongoosej/blog/slf4j :::


Offical Website
Offical Download
Offical GitHub
Offical Manaual

The Simple Logging Facade for Java (SLF4J) serves as a simple facade or abstraction for various logging frameworks (e.g. java.util.logging, logback, log4j) allowing the end user to plug in the desired logging framework at deployment time.

Multiple bindings were found on the class path

SLF4J API is designed to bind with one and only one underlying logging framework at a time. If more than one binding is present on the class path, SLF4J will emit a warning, listing the location of those bindings.
In case you do not wish to use log4j as the the SLF4J backend, you can instruct Maven to exclude these artifacts.
reference:
https://www.slf4j.org/codes.html#multiple_bindings
log4j与logback包冲突原因及解决,不可忽视的Warning