問題spring
在使用 maven 項目的時候,咱們會引入不少的第三方 jar 包,其中有一些不在咱們本身的私服或者中央倉庫
中,好比咱們本地的 jar 包maven
解決方式spring-boot
第一步,在項目結構中新建一個存放本地 jar 包的文件夾,將本地 jar 包放到文件夾下,以下圖所示:spa
第二步,在 pom 文件中引入 libs 文件夾下面的 jar 包;插件
1 <dependency> 2 <groupId>com.kxl</groupId> 3 <artifactId>kxl-invoice-sdk</artifactId> 4 <version>1.0-SNAPSHOT</version> 5 <scope>system</scope> 6 <systemPath>${project.basedir}/libs/kxl-invoice-sdk-1.0.jar</systemPath> 7 </dependency>
第三步,在 pom 文件的打包插件中增長打包時將本地 jar 包打到 部署的 jar包中去;code
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <version>1.5.6.RELEASE</version> <configuration> <includeSystemScope>true</includeSystemScope> </configuration> <executions> <execution> <goals> <goal>repackage</goal> </goals> </execution> </executions> </plugin>
<includeSystemScope>true</includeSystemScope> 的做用就是在打包的時候將 jar 包 打進咱們的 可啓動 jar 包中;blog