maven仓库报错 sqljdbc4ojdbc6
Posted cxscode
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven仓库报错 sqljdbc4ojdbc6相关的知识,希望对你有一定的参考价值。
报错:Cannot resolve com.microsoft.sqlserver:sqljdbc4:4.0 和 Missing artifact com.microsoft.sqlserver:sqljdbc4:jar:4.0
原因:当我们项目中用到的数据库为sql server时 我们一般在maven项目的pom.xml只添加依赖:
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>4.0</version>
</dependency>
但是添加完之后 pom.xml会提示:Missing artifact com.microsoft.sqlserver:sqljdbc4:jar:4.0
制定路径下确实没有sqljdbc4.jar文件。
微软不允许以maven的方式直接下载该文件
解决方法:
下载 sqljdbc4.jar
官网下载
windows版本http://go.microsoft.com/fwlink/?LinkId=144633&clcid=0x804
UNIX版本http://go.microsoft.com/fwlink/?LinkId=144635&clcid=0x804
官网地址:https://www.microsoft.com/en-us/download/details.aspx?id=11774
推荐几个网站:
http://maven.ibiblio.org/maven/
https://www.kumapai.com/open
http://www.java2s.com/Code/Jar/CatalogJar.htm
几乎什么都能下载了吧,何必花积分在下载区下载呢
(jar包查找网站https://www.findjar.com/网站简介:findJAR.com is a JAR search engine that helps Java developers to find JAR libraries containing required Java classes.)
添加新文件夹 C:\\Users\\Administrator\\.m2\\repository\\sqlserver\\sqljdbc4\\4.0
将sqljdbc4-4.0.jar文件放进去
运行命令
mvn install:install-file -Dfile=sqljdbc4-4.0.jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=4.0 -Dpackaging=jar
解释:mvn install:install-file -Dfile=“jar包的绝对路径” -Dpackaging=“文件打包方式” -DgroupId=groupid名 -DartifactId=artifactId名 -Dversion=jar版本
测试
进入maven仓库,发现sqljdbc4.jar已经安装。
执行相关项目的maven,编译通过。idea 标红消失
报错:Failure to find com.oracle:ojdbc6:pom:11.2.0.3
原因:Oracle的ojdbc.jar是收费的,所以maven的中央仓库中没有这个资源,只能通过配置本地库才能加载到项目中去。
下载ojdbc6-11.2.0.3.jar包
下载ojdbc6地址:https://mvnrepository.com/artifact/oracle/ojdbc6/11.2.0.3
新建C:\\Users\\Administrator\\.m2\\repository\\ojdbc6\\11.2.0.3,将ojdbc6-11.2.0.3.jar放进去,在该目录运行
mvn install:install-file -Dfile=jdbc6-11.2.0.3.jar -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0 -Dpackaging=jar
注意:不能把jar包放在本地仓库目录里,会报错的
下载ojdbc6-11.2.0.1.0.jar包
http://central.maven.org/maven2/com/jslsolucoes/ojdbc6/11.2.0.1.0/ojdbc6-11.2.0.1.0.jar
新建C:\\Users\\Administrator\\.m2\\repository\\ojdbc6\\11.2.0.1.0,将ojdbc6-11.2.0.1.0.jar放进去,在该目录运行
mvn install:install-file -Dfile=ojdbc6-11.2.0.1.0.jar -DgroupId=com.oracle -DartifactId=ojdbc6 -Dversion=11.2.0 -Dpackaging=jar
安装成功
tomcat-jdbc-8.5.14
https://www.mvnjar.com/org.apache.tomcat/tomcat-jdbc/8.5.14/detail.html
其他操作同上
以上是关于maven仓库报错 sqljdbc4ojdbc6的主要内容,如果未能解决你的问题,请参考以下文章
mavenMaven插件篇 --- maven项目 mvn install 报错: Failed to execute goal on project 项目名: Could not resol(代
springcloud启动web模块报错spring-boot-maven-plugin:2.2.1.RELEASE:run (default-cli) on project da-web(示例代(代
idea异常idea中下载maven源码报错:Caused by: java.rmi.ConnectException: Connection refused to host: 127.0.0.1(代