gpt4 book ai didi

java - 构建时找不到slf4j LoggerBinder

转载 作者:行者123 更新时间:2023-12-01 06:24:25 25 4
gpt4 key购买 nike

首先,我是 stackoverflow 的新手,并尽力向您提供所有信息,这可能会帮助您帮助我解决问题。

我在这个网站上发现了一些类似的问题,但没有一个能帮助我解决我的问题。

我正在使用 GXT 运行 GWT 项目。为此,我使用 Eclipse JavaEE Juno 和 Maven。

当我在 Eclipse 中运行应用程序时,一切都很好,但是当我尝试使用 Maven 以包为目标构建 war 时,我收到以下消息

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.

但它仍然有效。

我认为问题是找不到绑定(bind)器的实现。这是我的 pom.xml 的片段

<properties>
<gwtVersion>2.5.0</gwtVersion>
<gwt-log.version>3.2.1</gwt-log.version>
<maven.compiler.source>1.6</maven.compiler.source>
<maven.compiler.target>1.6</maven.compiler.target>
<hibernate.version>3.6.9.Final</hibernate.version>
<gwt-dnd.version>3.2.2</gwt-dnd.version>
<htmlcleaner.version>2.2</htmlcleaner.version>
<commons-codec.version>1.7</commons-codec.version>
<commons-fileupload.version>1.2.2</commons-fileupload.version>
<gxt.version>3.0.0</gxt.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<slf4jVersion>1.7.5</slf4jVersion>
</properties>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.16</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4jVersion}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4jVersion}</version>
</dependency>

这些是手册(http://www.slf4j.org/manual.html中推荐的),如果我想使用 slf4j 和 log4j

因为它只会发生,当我发动 war 时,我认为它可能不得不做某事。与范围有关,但我不知道。

希望您能帮助我,提前致谢。

最佳答案

请使用 log4j 版本(1.2.17) 而不是 (1.2.16) 。

例如:

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

关于java - 构建时找不到slf4j LoggerBinder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16561013/

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