默认情况下作为maven 项目,只能将pom 文件打包到jar内,spring boot 打包后的jar在
BOOT-INF/lib/
文件夹下,如果我们使用第三方的jar,则需要对应进行配置
对 pom.xml 进行如下配置。
<resources>
<resource>
<!-- 外部jar位置-->
<directory>lib</directory>
<targetPath>BOOT-INF/lib/</targetPath>
<includes>
<include>**/*.jar</include>
</includes>
</resource>
</resources>
网友评论