我正在为神经网络创建客户端和服务器包装器。客户端读取图像并将其发送到运行模型的服务器,并将结果响应回客户端。 因此我创建了一个多模块项目。当我从IDE(intellij idea)运行客户端和服务器时,一切正常。但是,当我使用maven构建然后从终端运行时,我得到错误。
我的主/父pom.xml如下:
<?xml version="1.0" encoding="UTF-8"?>
<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>gr.enomix</groupId>
<artifactId>imageClassificationWrapper</artifactId>
<packaging>pom</packaging>
<version>1.0</version>
<modules>
<module>Server</module>
<module>Client</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
<dependencies>
<dependency>
<groupId>com.googlecode.json-simple</groupId>
<artifactId>json-simple</artifactId>
<version>1.1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.0</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.codehaus.plexus</groupId>
<artifactId>plexus-utils</artifactId>
<version>2.0.5</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
我的服务器pom.xml是:
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>imageClassificationWrapper</artifactId>
<groupId>gr.enomix</groupId>
<version>1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>gr.enomix</groupId>
<artifactId>Server</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
</project>
我的客户端pom.xml是:
<?xml version="1.0" encoding="UTF-8"?>
<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">
<parent>
<artifactId>imageClassificationWrapper</artifactId>
<groupId>gr.enomix</groupId>
<version>1.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<groupId>gr.enomix</groupId>
<artifactId>Client</artifactId>
<packaging>jar</packaging>
<version>1.0</version>
</project>
我希望将父pom.xml中的所有库继承到子客户端和服务器。 然后我从终端跑 mvn clean install 并且项目成功构建没有任何错误。
然后我终于执行
java -cp target/Server-1.0.jar RunServer
运行服务器和
java -cp target/Client-1.0.jar RunClient
运行客户端但我收到错误
Exception in thread "main" java.lang.NoClassDefFoundError: org/json/simple/JSONObject
at ImageHttpClient.sendImage(ImageHttpClient.java:78)
at RunClient.main(RunClient.java:11)
来自客户端和服务器。
Exception in thread "Thread-0" java.lang.NoClassDefFoundError: org/apache/commons/io/IOUtils
at Handlers.ConnectionHandler.readAndSaveImage(ConnectionHandler.java:39)
at Handlers.ConnectionHandler.run(ConnectionHandler.java:25)
at java.lang.Thread.run(Thread.java:745)
Maven依赖项不是在类路径中构建的??? 难道我做错了什么?? 请帮助我两天破坏我的头......
答案 0 :(得分:1)
您的依赖项未包含在.jar
文件中,因此无法找到它们。因此NoClassDefFoundError
你要做的是在jar中包含依赖项,即构建一个所谓的“胖罐”。
我不会发布如何做到这一点,因为stackoverflow上已有很多帖子。正如我所见,你已经在评论中有一些。
编辑:要测试是否包含了依赖项,可以使用7zip打开生成的.jar
文件。
答案 1 :(得分:0)
我认为您应该在父pom中使用 dependencyManagement 标记,以便让子poms继承依赖项。
检查此链接
differences between dependencymanagement and dependencies in maven
答案 2 :(得分:0)
开发独立Java应用程序时,您的依赖项仅用于编译阶段。如果要运行实际代码,Java虚拟机需要具有给定依赖项的地址才能运行代码。为此,您必须明确告诉Java虚拟机在哪里找到库。您可以将所有库添加到-cp
选项中,如下所示:
java -cp {your-maven-repository-folder}/org/apache/common/commons-io/commons-io-1.3.2.jar:target/Client-1.0.jar RunClient
其中{your-maven-repository-folder}通常位于用户的主文件夹中。例如在linux中它是/home/mixtou/.m2/repository
。
您需要指定所有您的依赖项,将它们与linux中的:
和Windows中的;
分开。
由于您已经在使用IntelliJ,因此一个更简单的解决方案是右键单击RunClient
或RunServer
类并选择Run
。通过这样做,IntelliJ将尝试在Run panel
中运行您的项目,如果您检查运行输出中的第一行,您应该看到IntelliJ用于运行包含所有必需库的代码的确切命令。
请记住,在独立的Java应用程序中,jar文件中不会包含任何依赖项。此选项仅在将作为war
或ear
文件在应用程序服务器上运行的应用程序中可用。当然你可以使用一些maven插件将你的所有库合并到你的jar文件(通常称为胖jar)中然后你不需要在classpath中指定任何东西,但是你的jar文件可能会变得太大(依赖于你使用的库的数量),所以更新会更麻烦。