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



参考: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属性:

<!-- 添加oracle jdbc driver -->  
<dependency>    
	<groupId>com.oracle</groupId>    
	<artifactId>ojdbc14</artifactId>    
	<version>10.2.0.4.0</version>
</dependency>
刷新后pom文件不再报错。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值