gpt4 book ai didi

java - SLF4J:使用 log4j 时无法加载类 "org.slf4j.impl.StaticLoggerBinder"错误

转载 作者:行者123 更新时间:2023-12-01 19:57:51 27 4
gpt4 key购买 nike

我在我的 Maven 项目中使用 log4j 依赖项。但我收到以下与 slf4j 相关的警告。但我的 pom.xml 中只有 log4j 依赖项。

    <dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
<scope>compile</scope>
</dependency>

我查看了http://www.slf4j.org/codes.html#StaticLoggerBinder addnd 尝试添加

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.29</version>
<scope>test</scope>
</dependency>

到代码。但这没有用。有任何澄清吗?

最佳答案

正如你所说SLf4J网站给出了解决此问题的解决方案。按照此步骤,将 slf4j-simple-1.7.29.jarslf4j-api-1.7.29.jar 一起添加到您的应用程序中。

SLF4J 简单绑定(bind) » 1.7.29

<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.29</version>
<scope>test</scope>
</dependency>

SLF4J API 模块 » 1.7.29

<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.29</version>
</dependency>

希望这对您和其他遇到此问题的人有所帮助。

关于java - SLF4J:使用 log4j 时无法加载类 "org.slf4j.impl.StaticLoggerBinder"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59024973/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com