作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
首先,我是 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/
这个问题已经有答案了: SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". error (12 个回答) 已关闭10 年前
我是一名优秀的程序员,十分优秀!