将Springboot项目瘦身,简化部署

瘦身前的 Jar 包

目录结构如下:
将Springboot项目瘦身,简化部署_第1张图片
整个 Jar 包 16.7M 但是 BOOT-INF/lib 就占用了将近 16.6 M
将Springboot项目瘦身,简化部署_第2张图片

解决办法

  1. 正常编译 Jar 包, 解压出lib文件夹
  2. 修改 pom.xml 配置,编译出不带 lib 文件夹的 Jar 包
<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.bootgroupId>
            <artifactId>spring-boot-maven-pluginartifactId>
            <configuration>
                <mainClass>com.cgp.jar.SpringBootJarApplicationmainClass>
                <layout>ZIPlayout>
                <includes>
                    <include>
                        <groupId>nothinggroupId>
                        <artifactId>nothingartifactId>
                    include>
                includes>
            configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>repackagegoal>
                    goals>
                execution>
            executions>
        plugin>
    plugins>
build>

配置完成后,再次执行编译
将Springboot项目瘦身,简化部署_第3张图片
生成的 Jar 包体积明显变小
3. 运行编译后的 Jar 包
将解压出来的lib文件夹、新编译的jar包放在同一个目录, 运行下面命令 就能成功运行

java -Dloader.path=lib -jar spring-boot-jar-0.0.1-SNAPSHOT.jar

你可能感兴趣的:(SpringBoot)