當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
IDEA+SpringBoot+Maven 引入三方Jar包
生活随笔
收集整理的這篇文章主要介紹了
IDEA+SpringBoot+Maven 引入三方Jar包
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
總結一下在IDEA+SpringBoot+Maven環境下引入三方jar方式
項目工程目錄下新建目錄lib,將需要引入jar包放入lib目錄下
修改pom文件
<dependency><groupId>com.wangzibin.test</groupId><!--可隨意--><artifactId>zookeeper</artifactId><!--可隨意--><version>3.4.6</version><!--對應jar相應版本(不知道可隨意)--><scope>system</scope><systemPath>${pom.basedir}/lib/zookeeper-3.4.6.jar</systemPath> </dependency>plugin中設置
<plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><configuration><fork>true</fork><includeSystemScope>true</includeSystemScope><!--添加此項--></configuration></plugin>打包完事兒
總結
以上是生活随笔為你收集整理的IDEA+SpringBoot+Maven 引入三方Jar包的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 西门子:不搞末位淘汰制【ZZ】
- 下一篇: 大家谁可以帮帮我?