美文网首页
【maven】spring boot 项目打包外部依赖jar

【maven】spring boot 项目打包外部依赖jar

作者: miniy_7 | 来源:发表于2019-10-22 18:01 被阅读0次

    默认情况下作为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>
    

    相关文章

      网友评论

          本文标题:【maven】spring boot 项目打包外部依赖jar

          本文链接:https://www.haomeiwen.com/subject/ahccvctx.html