• springboot2.1.3 本地加载jar包+打包载入本地jar


    项目已springboot为主,有时候我们需要引入的jar包并非maven公共库中存在(这里不谈私自搭建私库),那我们能否像普通的工程一样,导入自己手动添加的jar包文件呢?

    答案是肯定的,来,一起往下看,首先在resource/ 下自建 lib 目录

    然后,我们在pom.xml里添加如下配置

            <!-- 引入本地jar -->
            <dependency>
                <groupId>xxxxxx</groupId>
                <artifactId>xxxxx</artifactId>
                <version>xxxxxx</version>
                <scope>system</scope>
                <systemPath>${project.basedir}/src/main/resources/lib/aspose-words-18.9-jdk16.jar</systemPath>
            </dependency>

    这里的 ${project.basedir}  就是本工程的当前根路径, 至于 groupId  artifactId version ,可以根据jar包的文件名,自行定义。

    到这里,我们已经可以正常使用了,请使用各自的IDE试试就明白了。

    那么,下面的问题,我们打包出去后,会发现,发行包里,并不会存在这个自行加载的JAR包,咋办?继续往下看。

        <build>
            <plugins>
                <plugin>
                    <groupId>org.springframework.boot</groupId>
                    <artifactId>spring-boot-maven-plugin</artifactId>
                    <!-- 将外部的jar打包到自身jar文件里 -->
                    <configuration>
                        <includeSystemScope>true</includeSystemScope>
                    </configuration>
                </plugin>
            </plugins>
        </build>

    只要按照上面的配置,继续修改pom.xml内容即可。

    好了,大功告成。

    最后,欢迎转载,但请标注原著地址,谢谢。

  • 相关阅读:
    python 日期、时间戳转换
    判断任意数字是否为素数
    linux使用工具记录
    python日志记录-logging模块
    python特性、属性以及私有化
    python 装饰器、内部函数、闭包简单理解
    sql语句操作记录
    virtualBox使用nat模式下ssh连接
    git常用操作
    分布式CAP定理(转)
  • 原文地址:https://www.cnblogs.com/jimmyshan-study/p/11756543.html
Copyright © 2020-2023  润新知