gpt4 book ai didi

java.lang.ClassNotFoundException 即使我为类文件指定 -cp 参数

转载 作者:太空宇宙 更新时间:2023-11-04 06:45:53 25 4
gpt4 key购买 nike

我不确定为什么会遇到这个问题。这是我在 Linux 命令行上运行的内容:

sudo java -jar gs-rest-service-0.1.0.jar -cp ./hello
java.lang.ClassNotFoundException: hello.Application

sudo java -jar gs-rest-service-0.1.0.jar -cp hello
java.lang.ClassNotFoundException: hello.Application

尝试了两种方法,使用 ./和不使用 ./。也尝试过这样的:

sudo java -jar gs-rest-service-0.1.0.jar -cp ./main/java/hello
java.lang.ClassNotFoundException: hello.Application

同样有和没有 ./.当我查看 jar 文件时,我看到 main/java/hello 中的 Application.class 文件全部小写。这是我的 MANIFEST.MF

Manifest-Version: 1.0
Class-Path: ./hello

更新:可以正常工作了。在这里,我的 pom.xml 文件中有一个问题,我已将 start-class 指定为 hello.Application 但我一直在搞乱我的包名称,因此它们从未同步,并且添加 -cp 没有帮助,因为现在我将在类中包一个东西,在 pom.xml 中包另一个东西,并且 -cp 甚至在命令行上的错误位置!啊..只是一个愚蠢的夜晚。

这是工作代码:

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>org.springframework</groupId>
<artifactId>gs-rest-service</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>

<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.0.2.RELEASE</version>
</parent>

<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
</dependencies>

<properties>
<start-class>main.java.hello.Application</start-class>
</properties>

<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>

<repositories>
<repository>
<id>spring-snapshots</id>
<url>http://repo.spring.io/libs-snapshot</url>
<snapshots><enabled>true</enabled></snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<url>http://repo.spring.io/libs-snapshot</url>
<snapshots><enabled>true</enabled></snapshots>
</pluginRepository>
</pluginRepositories>
</project>

应用程序.java:

package main.java.hello;


import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.SpringApplication;
import org.springframework.context.annotation.ComponentScan;

@ComponentScan
@EnableAutoConfiguration
public class Application {

public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}

所有其他 java 文件都指定了相同的包名称并在 eclipse IDE 中使用。为了摆脱 IDE 在所有内容上显示红色 X 的情况,我使用以下参数运行 Maven:

mvn dependency:copy-dependencies

正如这个精彩问题中所描述的:

Downloading all maven dependencies to a directory NOT in repository?

下载后,我创建了一个用户库,并从 Maven 下载后创建的依赖目录中提取了所有 jar 文件。我想我会将其添加到问题中。有点超出范围,但有助于消除 IDE 中编辑愚蠢的简单 hello world Web 服务时出现的更多错误。

最佳答案

您需要指定一个主类。

sudo java -cp gs-rest-service-0.1.0.jar -cp ./main/java hello.Application

-jar 标志告诉 Java 运行该 jar 中引用的主类。

关于java.lang.ClassNotFoundException 即使我为类文件指定 -cp 参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24005251/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com