博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
maven手动添加sqlserver驱动包
阅读量:6035 次
发布时间:2019-06-20

本文共 1076 字,大约阅读时间需要 3 分钟。

hot3.png

When I add sqlserver04.jar into my maven project, it's a little bit different others. For other jars, I directly add dependency into pom.xml. For sqlserver.jar, the dependency works on others' projects, but not mine. It always give me an error about missing artifact. Here is my solution:

1) download latest jar Microsoft download center. I download *.exe file.

2) Run the exe file and unzip it.

3) Open a command prompt and switch into the directory whre the jar file is located

4) Execute the comand

C:\apache-maven-3.2.5\bin\mvn install:install-file -Dfile=sqljdbc41.jar -Dpackaging=jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=4.1

5) When you see Build Success, You can find the jar in your maven repository. Mine is located here:

C:\Users\****\.m2\repository\com\microsoft\sqlserver\sqljdbc4\4.1

6) Now you're ready to add the dependency to pom.xml

[html] view plaincopy

<dependency>  

            <groupId>com.microsoft.sqlserver</groupId>  

            <artifactId>sqljdbc4</artifactId>  

            <version>4.2</version>  

        </dependency>  

转载于:https://my.oschina.net/u/2438634/blog/541165

你可能感兴趣的文章
Linux 抓包工具 tcpdump
查看>>
使用Visual Studio Code对Node.js进行断点调试
查看>>
IIS企业案例系列之九:TMG发布多个HTTPS站点终结篇
查看>>
解决NGINX PHP "No input file specified"
查看>>
2015年10月26日作业
查看>>
tracert
查看>>
perl:warning:Setting locale failed解决办法
查看>>
telegraf+influxdb+grafana开源监控架构
查看>>
浅析vanish
查看>>
我的友情链接
查看>>
全球首个大规模光电芯片到来
查看>>
linux 之字符集编码
查看>>
网站开发流程以及HTML5简介(九)
查看>>
小博老师解析Java核心技术 ——JSwing高级菜单制作
查看>>
BT5的U盘完整安装
查看>>
Saltstack系列:安装Saltstack
查看>>
windows设置administrator密码为空
查看>>
浅析Linux初始化init系统,第一部分:sysvinit(附Slackware init系统)
查看>>
Jenkins使用教程之用户权限管理(包含插件的安装)
查看>>
使用Node.js搭建微信支付后台(三)
查看>>