zoukankan      html  css  js  c++  java
  • 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了,比弄私服,本地仓库省事、方便

  • 相关阅读:
    CentOS网络接口配置文件ifcfgeth详解
    python session
    Plateau problem
    Maximum subsequence sum
    回溯法解符号三角形
    切莫开一块地荒一块地
    BackTracking_Fixed sum for array elements
    DP_LCS
    Shortest distance between two arrays
    BSP 面试总结
  • 原文地址:https://www.cnblogs.com/stm32stm32/p/10554333.html
Copyright © 2011-2022 走看看