所以,我想将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,但也失败了:
4条答案
按热度按时间t5zmwmid1#
您的连接字符串错误。对于Express,您需要在末尾添加示例名称。看看这个问题:JDBC connection Url for SQLServer express R2
q8l4jmvw2#
您的连接URL中可能缺少一些内容,例如:
将URL更改为如下内容:
bzzcjhmw3#
在
application.properties
文件中,尝试将spring.datasource.url
属性更改为:ecr0jaav4#
请检查你的pom.xml,看看你是否添加了正确的依赖关系。