最近发现使用 Springboot 项目上传到服务器越来越慢,所以决定将项目拆分一下,将需要的 lib 包拆分开来。
首先需要按原来的内容进行打包,然后就打好的包解压,然后将 BOOT-INF 下的内容,上传到服务器,然后将 pom.xml 文件中的 org.springframework.boot 增加 configuration 的配置,增加之后如下:
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<layout>ZIP</layout>
<includes>
<include>
<groupId>nothing</groupId>
<artifactId>nothing</artifactId>
</include>
</includes>
</configuration>
</plugin>
然后再重新打包,生成的内容就只有自己编写的内容了。
上传到服务器之后,先新建一个 shell 角本,然后增加执行权限: chmod x+a start.sh
然后将启动的脚本增加如果下内容再启动的时候,更新了代码,打包再上传服务器,也就一分钟的事儿。