zoukankan      html  css  js  c++  java
  • maven 如何引入本地jar包

    比如我下载了

    一、怎么添加jar到本地仓库呢?
    步骤:
    1.cmd命令进入该jar包所在路径
    2.执行命令:
    mvn install:install-file -Dfile=lucene-queryparser-4.6.1.jar -DgroupId=org.apache.lucene -DartifactId=lucene-queryparser -Dversion=4.6.1 -Dpackaging=jar
    其中:-DgroupId和-DartifactId的作用是指定了这个jar包在repository的安装路径,只是用来告诉项目去这个路径下寻找这个名称的jar包。
    比如:
    mvn install:install-file -Dfile=hadoop-hdfs-2.2.0.jar -DgroupId=org.apache.hadoop -DartifactId=hadoop-hdfs -Dversion=2.2.0 -Dpackaging=jar
    就是指把hadoop-hdfs-2.2.0.jar安装到repositoryorg.apache.hadoophadoop-hdfs2.2.0目录下,执行完命令后,如果需要在项目中使用这个jar,则在pom.xml中添加如下配置即可:
    <dependency>
          <groupId>org.apache.hadoop</groupId>
          <artifactId>hadoop-hdfs</artifactId>
          <version>2.2.0</version>
    </dependency>

     PS:不执行命令、通过手动在本地仓库创建文件夹的方式也是可以的,此时如果pom报错,可以在maven-》update project时勾选 force update of snapshots/releases 选项即可

    二、怎么在pom.xml中添加项目中libs下的jar呢,而不是从本地仓库中添加? 

     1、首先将要添加的jar包复制到项目中的libs文件夹下

     2、然后在pom.xml中添加如下代码:

    <dependency>  
        <groupId>htmlunit</groupId>  
        <artifactId>htmlunit</artifactId>  
        <version>2.21-OSGi</version>  
        <scope>system</scope>  
        <systemPath>${project.basedir}/libs/htmlunit-2.21-OSGi.jar</systemPath>  
    </dependency>  

    注意scope元素和systemPath元素,其中systemPath元素指定的就是jar包在项目中的路径。

     注意libs文件夹下的这个jar包不需要Add to Build Path

     注意通过这种方式引入的jar包在打包时不会被包含在war包中

  • 相关阅读:
    mysql5.7 linux安装参考
    谈谈微服务中的 API 网关(API Gateway)
    十大Intellij IDEA快捷键
    SqoopFlume、Flume、HDFS之间比较
    PostgreSQL-存储过程(一)基础篇
    spark调优篇-oom 优化(汇总)
    spark调优篇-数据倾斜(汇总)
    spark调优篇-Spark ON Yarn 内存管理(汇总)
    spark异常篇-OutOfMemory:GC overhead limit exceeded
    spark异常篇-Removing executor 5 with no recent heartbeats: 120504 ms exceeds timeout 120000 ms 可能的解决方案
  • 原文地址:https://www.cnblogs.com/williamjie/p/10652988.html
Copyright © 2011-2022 走看看