在maven的pom.xml文件中添加
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>8.1.1.jre8</version>
</dependency>
更新依赖后报错:
Cannot resolve Failure to transfer com.microsoft.sqlserver:mssql-jdbc:pom:8.1.1.jre8 from https://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced. Original error: Could not transfer artifact com.microsoft.sqlserver:mssql-jdbc:pom:8.1.1.jre8 from/to central (https://repo.maven.apache.org/maven2): java.net.SocketException: Connection reset
面向百度编程后看到别人的贴子说微软不允许以maven的方式直接下载该文件。
于是我到位微软官网查询以后发现依旧支持xml文件的方式来添加依赖
其实是可以使用xml添加依赖的。
解决办法:
1、使用最新版本的驱动
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>10.2.0.jre8</version>
</dependency>
更新后显示可用
注意:这里的版本要与JAVA的版本相同
文章来源地址https://www.toymoban.com/news/detail-783397.html
2、不使用Maven来使用JDBC
创建新项目来使用JDBC
Maven依赖官网下载依赖包
Maven Repository: com.microsoft.sqlserver » mssql-jdbc (mvnrepository.com)
下载好以后复制粘贴到Project项目内的lib包下(这里使用的是IDEA),右键点击add as library
完成文章来源:https://www.toymoban.com/news/detail-783397.html
到了这里,关于Could not find artifact com.microsoft.sqlserver:mssql-jdbc:pom报错原因的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!