SpringBoot_pom_02_打包


SpringBoot_pom_02_打包
  • 使用
    • 创建一个空的项目,如下图
      SpringBoot_pom_02_打包
    • 在pom中引入,SpringBoot依赖和mave_plugin打包依赖
      SpringBoot_pom_02_打包
    • 在maven中,执行打包操作,如下命令
      SpringBoot_pom_02_打包
    • 显示结果:
      • 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
      • 原因:
        • 在此package阶段中,可以通过使用配置选项(如下所示)或向Main-Class清单添加属性来指定要启动的主类。如果您未指定主类,则插件会使用public static void main(String[] args)方法搜索类。如果都没有,就会报错。
      • 解决:
        • 创建SpringBoot启动类,重新打包成功,如下
          SpringBoot_pom_02_打包
          SpringBoot_pom_02_打包
  • 添加configuration,可以打包出另一个jar包。
    SpringBoot_pom_02_打包
  • finalName 设定打包名称
    SpringBoot_pom_02_打包
  • 修改打包方式,war或者jar
    SpringBoot_pom_02_打包
    • 构建war包,最好添加上以下依赖:
      SpringBoot_pom_02_打包

上一篇:定制并发类(七)实现ThreadFactory接口生成自定义的线程给Fork/Join框架


下一篇:同步~异步~阻塞~非阻塞