起初,我是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 )
因为它只是发生,当我建立战争时,我认为它可能不得不……。与范围有关,但我不知道。
希望你能帮助我,在此先感谢。