SpringBoot快速引入第三方jar包
工作中,我们常会用到第三方jar包,而这些jar包往往在maven仓库是搜不到的,下面推荐一种简单、快速的引入第三方依赖的方法:
比如第三方jar包在lib文件夹下,对pom.xml的配置如下:
<dependencies>标签里面引入第三方jar包的依赖
pom.basedir指的是pom文件所在的目录,
systemPath指的是第三方jar包所在路径。
<dependency> <groupId>com.abc</groupId> <artifactId>cryptokit</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${pom.basedir}/lib/cryptokit-1.0.jar</systemPath> </dependency>
还必须修改<plugins>标签里面的maven plugin,增加includeSystemScope属性并设置为true
<plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <includeSystemScope>true</includeSystemScope> </configuration> </plugin>
通过以上的方式,就能使用maven将springboot项目打成一个jar包的时候引入第三方jar了,比弄私服,本地仓库省事、方便。
本文来自博客园,作者:Javanumberone,转载请注明原文链接:https://www.cnblogs.com/stm32stm32/p/10554333.html
posted on 2019-03-18 19:40 Javanumberone 阅读(1252) 评论(0) 编辑 收藏 举报
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步