我是maven的新手,最近两天我尝试将maven集成到一个小型的Web项目中。 (我使用Eclipse Juno作为IDE)。 首先,我使用“mvn-archetype-webapp”命令生成了一个新项目(结构),并将项目中的源代码复制到此结构中。 然后我将所有依赖项添加到pom.xml中,以便我可以使用tomcat7插件编译和启动项目。 到目前为止,除了每个maven命令开头的SLF4J错误消息之外,一切正常:
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 -->
<properties>
<spring.version>3.1.1.RELEASE</spring.version>
</properties>
<!-- dependencies -->
<dependencies>
<!-- logging -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.0.6</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.6.6</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>1.6.6</version>
<scope>runtime</scope>
</dependency>
<!-- junit -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>
<!-- Spring 3 -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.version}</version>
<exclusions>
<exclusion>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- jee -->
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>6.0</version>
<scope>provided</scope>
</dependency>
<!-- tiles -->
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-core</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-api</artifactId>
<version>2.2.2</version>
</dependency>
<dependency>
<groupId>org.apache.tiles</groupId>
<artifactId>tiles-jsp</artifactId>
<version>2.2.2</version>
</dependency>
<!-- jstl -->
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
</dependencies>
有人可以帮我解决这个问题吗?
答案 0 :(得分:8)
虽然这表示为错误,但您的日志会正常保存。在修复此错误之前,突出显示的错误仍然存在。有关详情,请参阅m2e support site。
当前可用的解决方案是使用外部maven版本而不是捆绑版本的Eclipse。您可以在下面的问题中找到关于此解决方案的更多详细信息以及与您面临的完全相同的问题。
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". error
答案 1 :(得分:3)
我遇到了同样的问题:我已将我的POM复制到一个空项目中,并将其削减到几乎没有(见下文) - 我仍然看到错误。我可以通过向POM添加SLF4J绑定(logback等)来验证它不会消失 - 消息显然来自Maven本身,而不是正在编译和测试的项目软件。 (我现在从一个完全空的项目中得到它。)
我能想到的最好的事情是我认为它与Eclipse有关:当我从命令行手动运行Maven时,错误不会出现 - 只有在Eclipse下调用时才会出现。 (我在MacOSX上使用Eclipse Helios Release 2,仅供参考,因此我们知道问题并不仅限于您的Juno版本。)
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>testing</groupId>
<artifactId>testing</artifactId>
<version>0.0.1-SNAPSHOT</version>
</project>
仅供参考,根据Ceki的建议,这里是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.
[INFO] Scanning for projects...
[INFO]
[INFO] ------------------------------------------------------------------------
[INFO] Building testing 0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO]
[INFO] --- maven-dependency-plugin:2.1:tree (default-cli) @ testing ---
[INFO] testing:testing:jar:0.0.1-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] BUILD SUCCESS
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 1.496s
[INFO] Finished at: Thu Oct 04 10:05:41 MDT 2012
[INFO] Final Memory: 9M/81M
[INFO] ------------------------------------------------------------------------
没有太多信息,但确实如此。
答案 2 :(得分:3)
此错误来自eclipse运行maven,而不是来自您的项目,因此它不应该影响您的构建过程或生成的文件。
我认为这是一个与使用非slf4j或其他日志工具的maven有关的问题,但eclipse或maven插件试图。
摆脱错误的最简单方法是使用外部maven而不是eclipse中的运行时,您可以在Preferences中配置它 - &gt; Maven - &gt;安装。
答案 3 :(得分:1)
依赖声明看起来很好。 Logback和slf4j将在您的网络应用程序中发布。但是,我怀疑slf4j-api.jar以某种方式包含在Tomcat中(但不包括logback)。
BTW,mvn dependency:tree
命令是你的朋友。它说什么?
答案 4 :(得分:0)
尝试添加logback-core的依赖项。
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.0.6</version>
<scope>runtime</scope>
</dependency>
答案 5 :(得分:0)
“使用tomcat7插件”
tomcat7插件具有SLF4J依赖性。在我将依赖直接分配给tomcat7插件之前,我遇到了同样的问题。
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.2</version>
<dependencies>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.5</version>
</dependency>
</dependencies>
<configuration>
<!-- ...snip... -->
</configuration>
</plugin>
</plugins>
</pluginManagement>
答案 6 :(得分:-1)
您可以将其添加到您的pom属性中。
<org.slf4j-version>1.7.5</org.slf4j-version>