gpt4 book ai didi

salesforce API jar 的 Maven 阴影 jar 中的 java.lang.NoClassDefFoundError

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

我有一个导入该类的 Apache Maven Java 项目:

com.sforce.soap.enterprise.EnterpriseConnection

从 IntelliJ 运行项目时,执行代码没有任何问题。但是,我希望能够从命令行将项目作为阴影 jar 运行。我一直在使用“mvn package”对 jar 进行着色。当我从命令行运行 jar 时,出现错误:

线程“main”中出现异常 java.lang.NoClassDefFoundError: com/sforce/soap/enterprise/EnterpriseConnection

我的 pom 包含依赖项:

<dependency>
<groupId>qa-integration.sfdc</groupId>
<artifactId>enterprise</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/enterprise-1.0.0.jar</systemPath>
</dependency>
<dependency>
<groupId>qa-integration.sfdc</groupId>
<artifactId>metadata</artifactId>
<version>1.0.0</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/metadata-1.0.0.jar</systemPath>
</dependency>

我的阴影执行如下所示:

      <execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<createDependencyReducedPom>false</createDependencyReducedPom>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>com.sunrun.integration.sfdc.metadata.Main</mainClass>
</transformer>
</transformers>
</configuration>
</execution>

当我列出 jar 的内容时,我根本看不到 salesforce 文件。

最佳答案

我遇到了这个问题,我的解决方案是将以下代码段添加到我的 pom.xml 中:

<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>corrigo.Main</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
<!--<plugin>-->
<!--<groupId>org.apache.maven.plugins</groupId>-->
<!--<artifactId>maven-jar-plugin</artifactId>-->
<!--<version>2.4</version>-->
<!--<configuration>-->
<!--<archive>-->
<!--<manifest>-->
<!--<mainClass>corrigo.Main</mainClass>-->
<!--</manifest>-->
<!--</archive>-->
<!--</configuration>-->
<!--</plugin>-->
</plugins>
</build>

然后你只需运行mvn package。这是一个可靠的资源: https://www.mkyong.com/maven/how-to-create-a-jar-file-with-maven/

关于salesforce API jar 的 Maven 阴影 jar 中的 java.lang.NoClassDefFoundError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49412741/

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