一、將jar包拷貝到項目文件夾響應位置,一般放到/src/main/webapp下
二、在pom.xml文件中加入以下標簽內容
<dependency>
<groupId>credibledata</groupId>
<artifactId>credibledata</artifactId>
<version>2.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/webapp/credibledata-envelop-1.0-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>jdk15on</groupId>
<artifactId>jdk15on</artifactId>
<version>2.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/src/main/webapp/bcprov-jdk15on-1.57.jar</systemPath>
</dependency>
三、在pom.xml文件的<build>標簽的子標簽<plugins>的子標簽<plugin>下加入如下標簽配置
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
如圖所示,是添加后的配置
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
第三步是為了能讓本地引入的jar包在打包時可以打到jar里去。
