本文主要是介绍【坑】SpringBoot项目打包后的jar包非常小,只有4KB,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
一、SpringBoot项目打包后的jar包非常小,只有4KB?
1.1、解决方法
pom.xml中添加如下配置
<build><plugins><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><!-- 此处的版本根据实际情况自己调整 --><version>2.6.13</version><configuration><addResources>true</addResources></configuration><executions><execution><goals><goal>repackage</goal></goals></execution></executions></plugin></plugins>
</build>
这篇关于【坑】SpringBoot项目打包后的jar包非常小,只有4KB的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!