引入本地jar包
在src同级目录下新建libs目录将jar包放入进去
在pom.xml中下加入以下代码
<dependencies>
<dependency>
<groupId>com.hikvision.ga</groupId>
<artifactId>artemis-http-client</artifactId>
<version>1.1.8</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/artemis-http-client-1.1.8.jar</systemPath>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
<includeSystemScope>true</includeSystemScope>
</configuration>
</plugin>
</plugins>
</build>
引入其他包(外网上的),如:import com.alibaba.fastjson.JSON;
在该网站查看对应版本的引用方式,将代码粘贴至pom.xml中
https://mvnrepository.com/artifact/com.alibaba/fastjson
所遇问题及解决方法
1.java.lang.ClassNotFoundException 这类问题是缺少指定的class,如当前错误就是缺少org.apache.commons.lang3.StringUtils
解决方法:将org.apache.commons.lang3.StringUtils包引入,可上述提到的网站中查找(Maven Repositor),或直接在浏览器中搜索