gpt4 book ai didi

java.lang.IllegalAccessError : tried to access field org. slf4j.impl.StaticLoggerBinder.SINGLETON 来自类 org.slf4j.LoggerFactory

转载 作者:搜寻专家 更新时间:2023-11-01 01:03:18 26 4
gpt4 key购买 nike

我在运行 GWT 应用程序时遇到此错误。

我的类路径中有这些 jar 文件:slf4j-api & slf4j-log4j12

知道可能是什么原因吗?

最佳答案

这个问题是由于 slf4j-log4j12 jar 的变化。从版本 1.5.6 开始,它不允许访问字段 org.slf4j.impl.StaticLoggerBinder.SINGLETON。

要解决它,请为 slf4j-api 和 slf4j-log4j12 使用最新的 jar(或至少版本 1.5.6 以上)。

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.5.6</version>
</dependency>

<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.5.6</version>
</dependency>

关于java.lang.IllegalAccessError : tried to access field org. slf4j.impl.StaticLoggerBinder.SINGLETON 来自类 org.slf4j.LoggerFactory,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9030476/

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