本文介紹了如何修復SLF4J:加載類";org.slf4j.impl.StaticLoggerBinder";.";失敗的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我有一個應用程序,它有以下錯誤消息:
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
在我嘗試運行應用程序的任何腳本后出現此消息。我發現,正如它所說的那樣,它不會創建日志,所以當出現故障時,我空手而歸。
我在Amazon Linux2上運行它,它最接近CentOS和Redhat。
我找到了以下資源:
此問題在此處解決:http://www.slf4j.org/codes.html#StaticLoggerBinder
我可以從這里拿到我需要的罐子:https://repo1.maven.org/maven2/org/slf4j/slf4j-simple/1.6.2/slf4j-simple-1.6.2.jar
在獲取這個JAR并將其放入我的應用程序的/lib之后,沒有任何變化。
其他文章描述了將該文件添加到類路徑。在Linux中,我得到的是:
# java -classpath /opt/opendj/lib/slf4j-simple-1.6.2.jar org.slf4j.impl.StaticLoggerBinder
Error: Could not find or load main class org.slf4j.impl.StaticLoggerBinder
# java -jar /opt/opendj/lib/slf4j-simple-1.6.2.jar org.slf4j.impl.StaticLoggerBinder
no main manifest attribute, in /opt/opendj/lib/slf4j-simple-1.6.2.jar
我是否正在嘗試將其添加到類路徑中?
如果需要,您可以通過執行以下操作重現此問題:
重現行為的步驟:
在CentOS或Amazon Linux2 EC2實例上安裝更新版本的OpenDJ。安裝Java 1.8.0
具體地說,Java-1.8.0-OpenJDK
在任何配置中安裝服務器,然后運行狀態腳本。
預期行為
應生成日志,并且不能顯示任何警告消息。
推薦答案
首先,您應該看看這里:https://www.slf4j.org/codes.html
另外,您可以嘗試將這些SLF4J Maven依賴項添加到您的POM中,并讓我知道這是否有效:
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-api</artifactId>
<version>2.13.3</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.13.3</version>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId>
<version>2.13.3</version>
</dependency>
注意:考慮到maven依賴項版本正在更新,那么您可能更喜歡使用依賴項的最新版本(例如,log4j-api為2.17.0)
另一方面,這篇文章也可以幫助你:
https://mkyong.com/java/log4j2-failed-to-load-class-org-slf4j-impl-staticloggerbinder/
這篇關于如何修復SLF4J:加載類";org.slf4j.impl.StaticLoggerBinder";.";失敗的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,