在构建时无法找到slf4j LoggerBinder

时间:2013-05-15 09:10:07

标签: java log4j slf4j

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

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

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

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

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.

但它确实有用。

我认为问题在于没有找到绑定器的实现。以下是我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>

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

因为它只会发生,当我建立战争时,我认为它可能必须......与范围有关,但我不知道。

希望你能提前帮助我。

1 个答案:

答案 0 :(得分:-1)

请使用log4j版本(1.2.17)代替(1.2.16)。

例如:

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