解决 Maven oracle驱动无法下载到的问题

来源:互联网 发布:linux tail 显示行号 编辑:程序博客网 时间:2024/05/22 06:41

因为Oracle驱动需要官方授权,所以在pom.xml文件直接配置,无法下载成功。但是可以通过将驱动包安装到本地maven库,可以解决此问题。

   1、如果有安装oracel,可以直接在 oracle安装目录 oracle\product\10.2.0\client_1\jdbc\lib中找到驱动包,然后将驱动直接复制到C:\Users\Administrator(Window7系统);

   2、然后使用Maven 安装 JAR 包的命令:

            mvn install:install-file -Dfile=jar包的位置 -DgroupId=groupId -DartifactId=artifactId -Dversion=version -Dpackaging=jar

   复制下面命令:

mvn install:install-file -DgroupId=com.oracle -DartifactId=ojdbc14 -Dversion=10.2.0.1.0 -Dpackaging=jar -Dfile=ojdbc14.jar。安装成功如下图:


安装成功后,就可以在pom.xml中直接配置了,在pom.xml文件中配置dependency属性:

[html] view plain copy
  1. <!-- 添加oracle jdbc driver -->    
  2. <dependency>      
  3.     <groupId>com.oracle</groupId>      
  4.     <artifactId>ojdbc14</artifactId>      
  5.     <version>10.2.0.4.0</version>  
  6. </dependency>  
刷新后pom文件不再报错。