问题记录(项目打包执行报错)java.lang.NoClassDefFoundError: com/taobao/api/ApiException
在项目pom中加入以下配置,解决。将项目打包之后在服务器运行报错。
·
将项目打包之后在服务器运行报错
java.lang.NoClassDefFoundError: com/taobao/api/ApiException
在项目pom中加入以下配置,解决。
注意:mainClass改为自己的主类所在位置。
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<mainClass>com.example.demo.DemoApplication</mainClass>
<layout>ZIP</layout>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
更多推荐
已为社区贡献1条内容
所有评论(0)