Setting up maven dependency for SQL Server (为 SQL Server 设置 Maven 依赖项)
问题描述
我正在开发一个 portlet,我可以在其中 Hibernate 访问 SQL Server 数据库.我为它设置了 maven 依赖项,并尝试以我知道 MySql 拥有它的相同方式找出 SQL Server 连接器.
I am developing a portlet where I have Hibernate access to SQL Server database. I set up maven dependencies for it and try to find out SQL Server connector on the same way I know MySql has it.
如果我搜索 SQL Server 连接器,我的 Google 搜索仍然只提供 Mysql.什么是正确的 maven 依赖 值?
Still my Google-search gives only Mysql if I search for SQL Server connector. What is the right maven dependency value?
推荐答案
从 Olaf 和 将其添加到您的本地 Maven 存储库 ;
Download the driver JAR from the link provided by Olaf and add it to your local Maven repository with;
mvn install:install-file -Dfile=sqljdbc4.jar -DgroupId=com.microsoft.sqlserver -DartifactId=sqljdbc4 -Dversion=4.0 -Dpackaging=jar
然后将其添加到您的项目中;
Then add it to your project with;
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>sqljdbc4</artifactId>
<version>4.0</version>
</dependency>
这篇关于为 SQL Server 设置 Maven 依赖项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:为 SQL Server 设置 Maven 依赖项
基础教程推荐
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01