构建路径上的冲突文件

发布于 2024-11-09 05:10:00 字数 547 浏览 0 评论 0原文

在 Eclipse 下编译我的 java 代码后,我收到以下错误消息:

SLF4J:类路径包含多个 SLF4J 绑定。 SLF4J:在 [jar:file:/home/user1/workspace/MC/lib/slf4j-nop-1.5.8.jar!/org/slf4j/impl/StaticLoggerBinder.class] 中找到绑定 SLF4J:在 [jar:file:/home/user1/workspace/stable/lib/org.slf4j/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class] 中找到绑定

我看来两个 slf4j*.jar 文件导致冲突。我尝试从构建的路径中删除一个 jar 文件。单击“构建路径->配置构建路径”,选择“库”选项卡后,我找不到任何与 home/user1/workspace/stable/lib/org.slf4j/slf4j-log4j12-1.6.1.jar 匹配的库”

如果没有这个文件,为什么会造成冲突呢?

After compiling my java code under Eclipse, I got the following error messages:

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/user1/workspace/MC/lib/slf4j-nop-1.5.8.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/home/user1/workspace/stable/lib/org.slf4j/slf4j-log4j12-1.6.1.jar!/org/slf4j/impl/StaticLoggerBinder.class]

t seems to me that the two slf4j*.jar files cause the conflict. I tried to remove one jar file from the built path. After clicking “build path->Configure build path”, selecting the “Libraries” tab, I could not find any library matching home/user1/workspace/stable/lib/org.slf4j/slf4j-log4j12-1.6.1.jar”

If there does not have this file, why it causes conflict?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遗忘曾经 2024-11-16 05:10:00

您的构建路径上的另一个 jar 可能包含 slf4j 的版本,该版本与您期望的版本不同。重新排列您的此外,根据 SLF4J 文档,这应该是警告而不是错误。

http://www.slf4j.org/codes.html

请注意,SLF4J 发出的警告只是一个警告。 SLF4J 仍将与它在类路径上找到的第一个框架绑定。

您应该能够将 SLF4J 放在库排序的顶部(“配置构建路径”、“排序”和“导出”选项卡),以便您知道它正在使用您期望的版本。然而,我更愿意找到冲突所在并从那里出发。

It could be possible that another jar on your buildpath contains a version of slf4j, which is different than the one you expect. Rearrange your Also, Per SLF4J docs, this should be a warning and not an error.

http://www.slf4j.org/codes.html

Note that the warning emitted by SLF4J is just that, a warning. SLF4J will still bind with the first framework it finds on the class path.

You should be able to put the SLF4J on top of your library ordering (Configure build path, Order and Export tab), so that you know it is using the version you expect it to. However, I would prefer finding where the conflict is and proceeding from there.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文