当前位置: 首页 > 知识库问答 >
问题:

用于Maven的java.lang.NoClassDefFoundError

谭奕
2023-03-14
Exception in thread "main" java.lang.NoClassDefFoundError: javax/ws/rs/core/Mul
ivaluedMap
    at java.lang.Class.getDeclaredMethods0(Native Method)
    at java.lang.Class.privateGetDeclaredMethods(Unknown Source)
    at java.lang.Class.privateGetMethodRecursive(Unknown Source)
    at java.lang.Class.getMethod0(Unknown Source)
    at java.lang.Class.getMethod(Unknown Source)
    at sun.launcher.LauncherHelper.validateMainClass(Unknown Source)
    at sun.launcher.LauncherHelper.checkAndLoadMain(Unknown Source)
Caused by: java.lang.ClassNotFoundException: javax.ws.rs.core.MultivaluedMap
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    ... 7 more

这是我当前拥有的pom文件:http://maven.apache.org/xsd/maven-4.0.0.xsd“>4.0.0

<groupId>com.test.api</groupId>
<artifactId>testing</artifactId>
<packaging>jar</packaging>
<version>0.1.0</version>
<name>testPlatform</name>

<properties>
    <source.version>1.7</source.version>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<build>
    <plugins>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <version>3.1</version>
            <configuration>
                <source>1.7</source>
                <target>1.7</target>
            </configuration>
        </plugin>

    </plugins>
</build>

<dependencies>
    <dependency>
  <groupId>junit</groupId>
  <artifactId>junit</artifactId>
  <version>3.8.1</version>
  <scope>test</scope>
</dependency>
    <!-- REST client -->
    <dependency>
        <groupId>org.glassfish.jersey.core</groupId>
        <artifactId>jersey-client</artifactId>
        <version>2.9.1</version>
    </dependency>

    <dependency>
<groupId>javax.ws.rs</groupId>
<artifactId>jsr311-api</artifactId>
<version>0.11</version>
 </dependency>

    <dependency>
        <groupId>joda-time</groupId>
        <artifactId>joda-time</artifactId>
        <version>2.3</version>
    </dependency>

    <!-- for deserialization -->
    <dependency>
        <groupId>com.google.code.gson</groupId>
        <artifactId>gson</artifactId>
        <version>2.2.4</version>
    </dependency>



</dependencies>

共有1个答案

范翰飞
2023-03-14

我很肯定我知道你的问题。

您正在使用Maven编译代码并生成jar文件。

然后,您尝试使用某个java命令行或其他命令行从maven外部执行该jar文件。

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-dependency-plugin</artifactId>
    <executions>
      <execution>
        <id>build-classpath</id>
        <phase>generate-sources</phase>
        <goals>
           <goal>build-classpath</goal>
        </goals>
        <configuration>
         <outputFile>${project.build.directory}/classpath.txt</outputFile>
        </configuration>
      </execution>
    </executions>
  </plugin>
 类似资料:
  • 我正在使用exec maven插件执行java应用程序,以便在我的项目中生成一些代码: 如果我在命令行“mvn exec:java”中执行,这很好,但现在我想将此代码生成附加到maven阶段“生成资源”,因此我将pom更改为: 但是突然当我执行“mvn exec: java”时,我遇到了以下错误: 谁能帮我一下怎么了?谢谢

  • 我有一个Apache Maven Java项目,它导入类: com.sforce.soap.enterprise.EnterpriseConnection 当从IntelliJ运行项目时,我在执行代码时没有任何问题。但是,我希望能够从命令行作为阴影JAR运行项目。我一直在用“MVN包”对罐子进行着色。当我从命令行运行jar时,我会得到错误:

  • 我有多个xsd模式,我想将它们解组到同一文件夹下的不同包中。我尝试了这两个插件,两个插件似乎都能很好地处理这两种配置,但在maven-jaxb2-plugin的情况下,eclipse插件会无限期地生成类(因为=true),但是如果我没有指定forceRegenate,当我运行我的配置有任何问题吗? jaxb2 maven插件 maven-jaxb2-plugin 以及build helper ma

  • 问题内容: 我想知道是否有明确的理由选择在APIViz上选择UmlGraph以便在Maven2构建中生成javadocUML图。彼此之间是否有任何集成或功能,它们看起来很相似? 问题答案: 有一个有趣的线程在这里约UMLGraph VS apiviz(这是提到在这个问题上也是如此),我的理解是这样的: UMLGraph较旧,但确实很棒(dixit Fowler比我重得多)。 apiviz是对UML

  • 是否与tomcat 8服务器和java 8一起使用?我找不到任何。

  • 问题内容: 我第一次使用Maven时,就陷入了依赖关系。 我使用Eclipse创建了一个Maven项目并添加了依赖项,并且该项目运行正常。 但是当我尝试通过命令行运行它时: 它下载依赖项,成功构建,但是当我尝试运行它时,出现NoClassDefFoundError: 我的是这样的: 谁能帮我? 问题答案: 默认情况下,Maven不会在生成的JAR文件中捆绑依赖项,并且在尝试通过命令行执行JAR文件