SpringBoot_pom_02_打包
-
使用
- 创建一个空的项目,如下图
- 在pom中引入,SpringBoot依赖和mave_plugin打包依赖
- 在maven中,执行打包操作,如下命令
-
显示结果:
-
Failed to execute goal org.springframework.boot:
-
spring-boot-maven-plugin:2.2.5.RELEASE:
-
repackage (default) on project SpringBoot-Maven-Plugin:
-
Execution default of goal org.springframework.boot:
-
spring-boot-maven-plugin:2.2.5.RELEASE:
- repackage failed: Unable to find main class
-
spring-boot-maven-plugin:2.2.5.RELEASE:
-
Execution default of goal org.springframework.boot:
-
repackage (default) on project SpringBoot-Maven-Plugin:
-
spring-boot-maven-plugin:2.2.5.RELEASE:
-
原因:
- 在此package阶段中,可以通过使用配置选项(如下所示)或向Main-Class清单添加属性来指定要启动的主类。如果您未指定主类,则插件会使用public static void main(String[] args)方法搜索类。如果都没有,就会报错。
-
解决:
- 创建SpringBoot启动类,重新打包成功,如下
-
Failed to execute goal org.springframework.boot:
- 添加configuration,可以打包出另一个jar包。
- finalName 设定打包名称
-
修改打包方式,war或者jar
- 构建war包,最好添加上以下依赖: