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

来源:互联网 发布:app可视化编程软件 编辑:程序博客网 时间:2024/06/11 23:49

参考:http://blog.csdn.net/hbxtw/article/details/15340217

因为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
 在CODE上查看代码片派生到我的代码片
  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文件不再报错。


0 0