springboot 3:部署jar包与依赖包分离打包

问题1:springboot构建jar部署,maven构建的jar包含 \BOOT-INF\lib\下的所有依赖jar包,jar包文件太大。

解决:

1.pom文件 加配置

<plugin>
    <groupId>org.springframework.boot</groupId> 
    <artifactId>spring-boot-maven-plugin</artifactId>
    <configuration>
        <mainClass>com.johnnian.App</mainClass>
        <layout>ZIP</layout>
        <includes> 
            <include>
                <groupId>nothing</groupId>
                <artifactId>nothing</artifactId>
            </include>  
         </includes>
    </configuration>
       
	<executions>
            <execution>
                <goals>
                    <goal>repackage</goal>
                </goals>
            </execution>
        </executions>
</plugin>

2.打包
maven install之后,将jar包用360打开,将jar包中BOOT-INF里面的lib拷出来,然后将jar包的lib删掉
在这里插入图片描述
启动java -Dloader.path=lib/ -jar xxx.jar





问题2:普通打包 maven install jar包 java -jar 跑不起来,缺少依赖包
在这里插入图片描述
普通打包:将依赖包放入项目lib中添加的pom(亲测成功)

 <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <version>2.10</version>
                <executions>
                    <execution>
                        <id>copy-dependencies</id>
                        <phase>package</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

/*<layout>ZIP</layout>
					<includes>
						<include>
							<groupId>nothing</groupId>
							<artifactId>nothing</artifactId>
						</include>
					</includes>*/ 如果有这一段 注掉

解析:
a.第一种打包:jar包和依赖包分离打包(只有代码)
b.第二种打包:jar包包含依赖包(有代码和依赖包)

IDEA打包springboot多模块项目jar包

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值