我对maven完全不熟悉,接受了几个教程并决定用slf4j进行一些日志记录,但是我一直收到一个无法找到类的错误。
经过一些互联网搜索,我试图在我的pom.xml中添加插件等,但似乎没什么用。
例外是:
java -cp target/MavenTest-1.0-SNAPSHOT.jar org.nilun.App
Hello World!
Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory
at org.nilun.App.main(App.java:15)
Caused by: java.lang.ClassNotFoundException: org.slf4j.LoggerFactory
at java.net.URLClassLoader.findClass(URLClassLoader.java:381)
at java.lang.ClassLoader.loadClass(ClassLoader.java:424)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:331)
at java.lang.ClassLoader.loadClass(ClassLoader.java:357)
... 1 more
这是我的pom.xml的片段
<dependencies>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
<version>4.11</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.12</version>
</dependency>
</dependencies>
非常简单的课程
package org.nilun;
import org.slf4j.*;
/**
* Hello world!
*
*/
public class App
{
public static void main( String[] args )
{
System.out.println( "Hello World!" );
Logger logger = LoggerFactory.getLogger(App.class);
logger.info("Hello World!");
}
}
jar文件位于我的$ HOME / development / lib中 当然它已被添加到我的eclipse构建路径
欢迎任何想法来解决这个问题。
谢谢!
答案 0 :(得分:0)
我认为执行程序的方法就是问题。如果我在Eclipse中执行您的代码,它就可以正常工作(添加此依赖项
之后)<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.12</version>
</dependency>
根据SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder",你需要修复另一个异常。但是,当我使用“java -cp target / MavenTest-1.0-SNAPSHOT.jar org.nilun.App”时,我会得到与您相同的异常。
编辑:要创建包含依赖项的.jar文件,请查看Maven Assembly插件(这是一个很好的简短介绍:https://maven.apache.org/plugins/maven-assembly-plugin/usage.html)。您需要将以下内容添加到POM中:
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.5.5</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>de.clanue.MavenTest.App</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
现在,使用maven构建项目会在目标文件夹中创建一个文件“MavenTest-0.0.1-SNAPSHOT-jar-with-dependencies.jar”。它包含您的依赖项,您可以使用“java -jar target / MavenTest-0.0.1-SNAPSHOT-jar-with-dependencies.jar”运行它。
答案 1 :(得分:0)
嗨Lupa,谢谢你的帮助。 在你的指导下,我得到了它的工作。 我所做的是将以下插件添加到
再次感谢您的帮助!
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.6</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<classpathPrefix>lib</classpathPrefix>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/lib</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>false</overWriteSnapshots>
<overWriteIfNewer>true</overWriteIfNewer>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>