SpringBoot 增量部署发布(第2版)

embedded/2024/11/20 17:41:05/

一、背景介绍

书接上一篇《SpringBoot 增量部署发布_springboot增量部署-CSDN博客》,上一篇内容实现了将静态资源与jar分离,但是即使是打包成**-exec.jar,解压jar文件,可以看到里面包含了static,resource目录,整个jar文件还是偏大,有没有办法彻底分离静态资源和jar呢,这篇文章就是解决这个问题的。

二、解决办法

还是修改项目pom.xml文件的build节点。

1.打包完整包

这跟springboot默认的打包方式一致,将整个程序打包成一个jar,可以根据实际情况看是否使用,有,可以不用。

<!--0.完整包:这个是springboot的默认编译插件,他默认会把所有的文件打包成一个jar-->
<plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><executions><execution><goals><goal>repackage</goal></goals></execution></executions><configuration><!--程序入口类 --><mainClass>com.rc114.web.BlogApplication</mainClass><addResources>true</addResources><outputDirectory>${project.build.directory}/jar-one-package</outputDirectory></configuration>
</plugin>

2.打包jar,生成项目对应的jar

此步是将web项目打包成jar,但是不包含static,templates目录。

<!--分离包:步骤1.打包jar,生成项目对应的jar,如:rc_web_rb-0.0.1.jar -->
<plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-jar-plugin</artifactId><configuration><!-- 不打包资源文件(配置文件和依赖包分开) --><excludes><exclude>*.yml</exclude><exclude>*.properties</exclude><exclude>mybatis/**</exclude><exclude>mapper/**</exclude><exclude>static/**</exclude><exclude>templates/**</exclude></excludes><archive><manifest><addClasspath>true</addClasspath><!-- MANIFEST.MF 中 Class-Path 加入前缀 --><classpathPrefix>lib/</classpathPrefix><!-- jar包不包含唯一版本标识 --><useUniqueVersions>false</useUniqueVersions><!--程序入口类 --><mainClass>com.rc114.web.BlogApplication</mainClass></manifest><manifestEntries><!--MANIFEST.MF 中 Class-Path 加入资源文件目录 --><Class-Path>./resources/</Class-Path></manifestEntries></archive><outputDirectory>${project.build.directory}</outputDirectory></configuration>
</plugin>

注意:

1.mainClass 需要根据你实际情况进行修改。

2.excludes 排除了不必要的文件夹,所以打包出来的jar会比较小。

3.打包lib,将引用jar放到lib文件夹

<!--分离包:步骤2:打包lib:该插件的作用是用于复制依赖的jar包到指定的文件夹里 -->
<plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-dependency-plugin</artifactId><executions><execution><id>copy-dependencies</id><phase>package</phase><goals><goal>copy-dependencies</goal></goals><configuration><outputDirectory>${project.build.directory}/lib/</outputDirectory><overWriteReleases>false</overWriteReleases><overWriteSnapshots>false</overWriteSnapshots><overWriteIfNewer>true</overWriteIfNewer></configuration></execution></executions>
</plugin>

4.打包resource,将resources目录复制到target目录

<!--分离包:步骤3.复制文件:该插件的作用是用于复制指定的文件(将resources目录复制到target目录) -->
<plugin><artifactId>maven-resources-plugin</artifactId><executions><execution><!-- 复制配置文件 --><id>copy-resources</id><phase>package</phase><goals><goal>copy-resources</goal></goals><configuration><resources><resource><directory>src/main/resources</directory><includes><include>*.yml</include><include>*.properties</include><include>mybatis/**</include><include>logback/**</include><include>mapper/**</include><include>static/**</include><include>templates/**</include></includes></resource></resources><outputDirectory>${project.build.directory}/resources</outputDirectory></configuration></execution></executions>
</plugin>

5.清理非必要目录

在target目录下,还会生成classes,generated-sources,maven-archiver,maven-status等目录,这些目录在真正部署时,往往是不需要的,可以在打包完成后排除掉。通过maven-antrun-plugin插件即可排除指定的目录。

<!--打包完成后,移除非必要目录(根据实际情况进行配置)-->
<plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-antrun-plugin</artifactId><version>3.0.0</version><executions><execution><phase>package</phase><goals><goal>run</goal></goals><configuration><target><delete dir="${project.build.directory}/antrun" /><delete dir="${project.build.directory}/classes" /><delete dir="${project.build.directory}/generated-sources" /><delete dir="${project.build.directory}/maven-archiver" /><delete dir="${project.build.directory}/maven-status" /></target></configuration></execution></executions>
</plugin>

三、完整的配置

<build><plugins><!--0.完整包:这个是springboot的默认编译插件,他默认会把所有的文件打包成一个jar--><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><executions><execution><goals><goal>repackage</goal></goals></execution></executions><configuration><!--程序入口类 --><mainClass>com.rc114.web.BlogApplication</mainClass><addResources>true</addResources><outputDirectory>${project.build.directory}/jar-one-package</outputDirectory></configuration></plugin><!--分离包:步骤1.打包jar,生成项目对应的jar,如:rc_web_rb-0.0.1.jar --><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-jar-plugin</artifactId><configuration><!-- 不打包资源文件(配置文件和依赖包分开) --><excludes><exclude>*.yml</exclude><exclude>*.properties</exclude><exclude>mybatis/**</exclude><exclude>mapper/**</exclude><exclude>static/**</exclude><exclude>templates/**</exclude></excludes><archive><manifest><addClasspath>true</addClasspath><!-- MANIFEST.MF 中 Class-Path 加入前缀 --><classpathPrefix>lib/</classpathPrefix><!-- jar包不包含唯一版本标识 --><useUniqueVersions>false</useUniqueVersions><!--程序入口类 --><mainClass>com.rc114.web.BlogApplication</mainClass></manifest><manifestEntries><!--MANIFEST.MF 中 Class-Path 加入资源文件目录 --><Class-Path>./resources/</Class-Path></manifestEntries></archive><outputDirectory>${project.build.directory}</outputDirectory></configuration></plugin><!--分离包:步骤2:打包lib:该插件的作用是用于复制依赖的jar包到指定的文件夹里 --><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-dependency-plugin</artifactId><executions><execution><id>copy-dependencies</id><phase>package</phase><goals><goal>copy-dependencies</goal></goals><configuration><outputDirectory>${project.build.directory}/lib/</outputDirectory><overWriteReleases>false</overWriteReleases><overWriteSnapshots>false</overWriteSnapshots><overWriteIfNewer>true</overWriteIfNewer></configuration></execution></executions></plugin><!--分离包:步骤3.复制文件:该插件的作用是用于复制指定的文件(将resources目录复制到target目录) --><plugin><artifactId>maven-resources-plugin</artifactId><executions><execution><!-- 复制配置文件 --><id>copy-resources</id><phase>package</phase><goals><goal>copy-resources</goal></goals><configuration><resources><resource><directory>src/main/resources</directory><includes><include>*.yml</include><include>*.properties</include><include>mybatis/**</include><include>logback/**</include><include>mapper/**</include><include>static/**</include><include>templates/**</include></includes></resource></resources><outputDirectory>${project.build.directory}/resources</outputDirectory></configuration></execution></executions></plugin></plugins>
</build>

最终打包输出的target目录结构:

lib和***.jar 供后端更换,发布新程序。

resource 供前端更换,发布新程序。

这样就可以增量更新了,每次只用传很小的文件上去就可以了。

启动程序跟原来一样,直接把文件放在同级目录,然后运行 java -jar  rc_web_blog-0.0.1.jar 即可。

四、参考文档

SpringBoot打包实现静态文件、配置文件、jar包分离

https://www.cnblogs.com/pxblog/p/14645043.html


http://www.ppmy.cn/embedded/139135.html

相关文章

3-KSQL

查看KSQL帮助 在我们使用命令行来对KES进行操作的时候&#xff0c;我们一般是使用KSQL命令行工具来对KES进行操作 学习一个命令的使用方法&#xff0c;是必然少不了我们去查看它的帮助文档 [kingbasenode1 ~]$ ksql --help ksql是Kingbase 的交互式客户端工具。 使用方法:ks…

STM32G4的数模转换器(DAC)的应用

目录 概述 1 DAC模块介绍 2 STM32Cube配置参数 2.1 参数配置 2.2 项目架构 3 代码实现 3.1 接口函数 3.2 功能函数 3.3 波形源代码 4 DAC功能测试 4.1 测试方法介绍 4.2 波形测试 概述 本文主要介绍如何使用STM32G4的DAC模块功能&#xff0c;笔者使用STM32Cube工具…

在MacOS中Finder中通过路径来导航

在Windows中&#xff0c;可以直接在资源管理器的地址栏中输入路径来转到指定位置。 然后换到MacOS中却发现&#xff0c;Finder中没有地址栏。 那怎么转到指定位置呢&#xff1f;快捷键&#xff1a;cmdshiftg 然后粘贴地址&#xff0c;按回车&#xff0c;转到指定地址。 同W…

一文详解架构分层

架构 - 理解构架的分层 技术框架&#xff08;technological Framework&#xff09;是整个或部分技术系统的可重用设计&#xff0c;表现为一组抽象构件及构件实例间交互的方法。于开发者而言&#xff0c;实际工作从通常采用的是分层模型&#xff0c;这里独立一个章节&#xff0c…

android SQLiteOpenHelper 什么时候需要使用到事务

SQLiteOpenHelper 是不是只有在插入数据、修改数据的时候需要使用事务&#xff0c;删除数据和查询数据的是否也需要开启事务? 在Android开发中&#xff0c;使用SQLiteOpenHelper类管理数据库事务时&#xff0c;事务的使用主要是为了确保数据的完整性和一致性。事务可以在执行…

【VIM】vim 常用命令

文章目录 插入模式光标移动拷贝/粘贴/删除/撤销块操作分屏代码缩进命令组合使用其他 前言&#xff1a;本文内容大部分摘抄自酷壳和博客园   –   CoolShell – 陈皓   博客园 – 易先讯 插入模式 a → 在光标后插入o → 在当前行后插入一个新行O → 在当前行前插入一个新…

蓝桥杯每日真题 - 第16天

题目&#xff1a;&#xff08;卡牌&#xff09; 题目描述&#xff08;13届 C&C B组C题&#xff09; 解题思路&#xff1a; 题目分析&#xff1a; 有 n 种卡牌&#xff0c;每种卡牌的现有数量为 a[i]&#xff0c;所需的最大数量为 b[i]&#xff0c;还有 m 张空白卡牌。 每…

生成式人工智能(AIGC)在软件开发设计模式课程教学中的应用

一、引言 软件设计模式作为软件工程领域的核心组成部分&#xff0c;对于提升软件系统的质量和可维护性至关重要。然而&#xff0c;传统的软件设计模式课程教学方法面临着诸多挑战&#xff0c;例如教师准备教学案例的过程繁琐&#xff0c;学生理解和应用具体案例难度较大&#…