项目已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内容即可。
好了,大功告成。
最后,欢迎转载,但请标注原著地址,谢谢。