连接Azure Sql Server和Spring Boot的异常

时间:2017-03-30 13:37:22

标签: sql-server spring maven azure spring-boot

我正在尝试使用com.microsoft.sqlserver.jdbc.SQLServerDriver驱动程序在Spring Boot中配置应用程序以连接Azure DataBase。

这是我的配置:

spring.datasource.driverClassName=com.microsoft.sqlserver.jdbc.SQLServerDriver
spring.datasource.url=jdbc:sqlserver://hdonrns815.database.windows.net:1433;databaseName=code_dev
spring.datasource.username=user
spring.datasource.password=password
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.SQLServerDialect
spring.jpa.show-sql=true

这是我的SQL Server pom.xml配置:

<dependency>
   <groupId>com.microsoft.sqlserver</groupId>
   <artifactId>mssql-jdbc</artifactId>
</dependency>

这就是错误:

com.microsoft.sqlserver.jdbc.SQLServerException: SQL Server did not return a response. The connection has been closed. ClientConnectionId:d7304f30-4c29-4258-ac9f-4409dee20fdd

我可以从Sql Server管理连接到数据库。

我不知道发生了什么。

感谢。

1 个答案:

答案 0 :(得分:0)