java 如何将Sping Boot 连接到SQL Server Management Studio

ncgqoxb0  于 2023-04-19  发布在  Java
关注(0)|答案(4)|浏览(185)

所以,我想将Sping Boot 连接到SQL Server Management Studio,以练习CRUD操作,但是当我尝试时,我得到一个错误:enter image description here
所以,我添加了依赖项:enter image description here
我添加了属性:enter image description here
下面是我的SQL Server:enter image description here
这里我创建了一个名为product的数据库:enter image description here
我还启用了TCP/IP:enter image description here
我还将TCP端口设置为1433:enter image description here
但是我仍然得到同样的错误,有人能解释我是什么问题,我怎么能修复它?
P.s我还没有写任何代码,我只是用spring initializer做了一个空项目,现在我只想把spring Boot 连接到sql server(所以我只是运行一个空的demo应用程序)
我也尝试过通过编写Java代码连接到SQL Server,但也失败了:

t5zmwmid

t5zmwmid1#

您的连接字符串错误。对于Express,您需要在末尾添加示例名称。看看这个问题:JDBC connection Url for SQLServer express R2

q8l4jmvw

q8l4jmvw2#

您的连接URL中可能缺少一些内容,例如:

  • 端口号
  • 示例名称
  • 基本认证

将URL更改为如下内容:

jdbc:sqlserver://DESKTOP-7HI4O73;user=Givexa;password=yourPassWord
bzzcjhmw

bzzcjhmw3#

application.properties文件中,尝试将spring.datasource.url属性更改为:

spring.datasource.url=jdbc:sqlserver://localhost\\SQLEXPRESS:1433;databaseName=product
ecr0jaav

ecr0jaav4#

请检查你的pom.xml,看看你是否添加了正确的依赖关系。

相关问题