java.lang.NoClassDefFoundError:orgapachepoissusermodelRow

java.lang.NoClassDefFoundError:orgapachepoissusermodelRow,第1张

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

可能仅在运行jar时才得到此信息, 因为依赖项不可用/未打包在其中

尝试生成一个 “ fat jar” (也称为 uber-jar ),它将所有依赖打包到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
可在此处找到

更新: 由于您正在使用可运行的jar文件,因此您可以按照与 可执行Jar
相关的文档的本节进行 *** 作 __



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5083345.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-16
下一篇 2022-11-16

发表评论

登录后才能评论

评论列表(0条)

保存