gpt4 book ai didi

java - java.lang.NoClassDefFoundError : org/joda/time/DateTime not working 的类似解决方案

转载 作者:太空宇宙 更新时间:2023-11-04 12:27:19 27 4
gpt4 key购买 nike

我之前已经在这里看到过这个问题,并且我已经查看了解决方案,但是我无法解决我遇到的问题。我在 Eclipse for Java 中创建了一个非常简单的 Maven 项目,我想运行输出 jar 文件,例如java -jar jar文件名.jar

我可以通过右键单击 Eclipse 中的项目并指示作为 Java 应用程序运行来运行该程序。我可以使用 mvn package 将项目构建为 jar 文件。运行 jar 文件,我得到了 joda 时间 NoClassDefFoundError 的输出。 joda jar 文件位于配置的存储库中,例如.m2/存储库/joda-time/joda-time/2.8.2。 Eclipse 中的项目没有指示任何错误。我正在使用 jdk1.8.0_92 Maven 版本 3.3.9 和 eclipse Java EE Neon 版本 4.6.0。 Java home 在环境变量中配置,类路径也配置为: ...\Java\jdk1.8.0_92\jre\lib;C:\Users\username.m2\repository

一些附加信息,类路径是正确的,没有拼写错误。我还查看了另一个类似问题的解决方案,其中建议是将外部 jar 添加到运行配置下的引导条目中。我还在 joda time 的 Java 构建路径中创建了一个条目,它正确地指向 .m2/repository.../joda-time/2.8.2 这看起来是当它从 eclipse 运行时,到 joda time jar 文件的路径是已知的(由于缺乏更好的术语)。然而,当构建 jar 文件时,该路径是未知的。我打开 jar 文件并查看 MANIFEST.MF 文件,我看到:

Manifest-Version: 1.0
Built-By: John
Class-Path: joda-time-2.8.jar
Build-Jdk: 1.8.0_92
Created-By: Maven Integration for Eclipse
Main-Class: hello.HelloMain

来源很简单: 包你好;

import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.joda.time.format.DateTimeFormat;

public class HelloMain {

public static void main(String[] args) {
System.out.println("Hello From My Main ! It worked\n");
final DateTime today = new DateTime().withZone(DateTimeZone.UTC);
DateTime tommorrow = today.plusDays(3);

String startTime = today.toString(DateTimeFormat.forPattern("yyyy-MM- dd'T'HH:mm'Z"));
String endTime = tommorrow.toString(DateTimeFormat.forPattern("yyyy-MM-dd'T'HH:mm'Z"));
System.out.printf("The start time %s End Time %s \n", startTime, endTime);

}

}

这是我的 pom 文件:

<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>hello</groupId>
<artifactId>hello</artifactId>
<version>0.0.1-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<!-- Build an executable JAR -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>hello.HelloMain</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.8</version>
</dependency>

最佳答案

在尝试了多种不同的 Pom 文件方法之后,我决定采用一种不同的方法。这仅适用于您使用 Eclipse 执行此操作的情况,因为 Eclipse 提供导出到可运行 jar 功能。在 Eclipse 中突出显示您感兴趣的项目时,右键单击“Export”并选择“Java/Runnable JAR file”。单击下一步并选择“将所需的库打包到生成的 JAR 中”。这构建了包含我需要的所有必需 jar 文件的 jar 文件。虽然从使用 Maven 打包创建输出 jar 的角度来看,这确实不能解决问题,但它确实提供了正确的可执行 jar 文件。

关于java - java.lang.NoClassDefFoundError : org/joda/time/DateTime not working 的类似解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38231804/

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