java.lang.NoClassDefFoundError:org / apache / poi / ss / usermodel / Row

时间:2018-12-30 18:28:55

标签: java swing maven apache-poi pom.xml

我已经制作了一个小应用程序,可以从excel(xls文件)中读取并将内容显示到JTable中。在eclipse中一切正常,但是当我创建jar文件并尝试运行它时,出现以下问题:

java.lang.NoClassDefFoundError: org/apache/poi/ss/usermodel/Row

我发现奇怪的是,问题出在行上,当在行之前调用工作簿和工作表并且没有麻烦时(至少从我所看到的情况来看)。

我已经进行了大量研究,主要似乎是jar文件不在Class-Path中,但是打开jar和清单文件后,我可以看到所有jar。

Class-Path: poi-ooxml-4.0.1.jar poi-4.0.1.jar commons-codec-1.11.jar commons-collections4-4.2.jar commons-math3-3.6.1.jar commons-compress-1.18.jar curvesapi-1.05.jar poi-ooxml-schemas-4.0.1.jar xmlbeans-3.0.2.jar

这是我的pom.xml文件中的内容:

<build>
 <plugins>
  <plugin>
    <!-- Build an executable JAR -->
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-jar-plugin</artifactId>
    <configuration>
      <archive>
       <manifest>
          <addClasspath>true</addClasspath>
          <classpathPrefix>./</classpathPrefix>
           <mainClass>com.clientdb.classes.DynamicRegForm</mainClass>
         </manifest>
       </archive>
     </configuration>
    </plugin>
  </plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>4.0.1</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.0.1</version>
   </dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml-schemas</artifactId>
<version>4.0.1</version>
</dependency>
</dependencies>

我还尝试下载jar文件并将其添加到项目中,而不是将依赖项添加到pom文件中,并且仍然是相同的错误。 有什么想法吗?

1 个答案:

答案 0 :(得分:4)

可能只有在运行jar时,您会得到此信息。,因为依赖项不可用/未打包在其中。

尝试生成一个“胖罐子” (也称为 uber-jar ),它将所有依赖项打包到罐子中:

<build>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-shade-plugin</artifactId>
            <executions>
                <execution>
                    <phase>package</phase>
                    <goals>
                        <goal>shade</goal>
                    </goals>
                </execution>
            </executions>
            <configuration>
                <finalName>YOUR_JAR_FINAL_NAME</finalName>
            </configuration>
        </plugin>
    </plugins>
</build>

maven-shade-plugin相关的文档可以为found in here

更新:由于您使用的是可运行的jar文件,因此可以关注与{em>可执行jars

相关的this section of the documentation