赞
踩
报错:“驱动程序无法通过使用安全套接字层(SSL)加密与 SQL Server 建立安全”
!-- <dependency>-->
<!-- <groupId>com.microsoft.sqlserver</groupId>-->
<!-- <artifactId>mssql-jdbc</artifactId>-->
<!-- <version>10.2.0.jre17</version>-->
<!-- </dependency>-->
<!-- <dependency>-->
<!-- <groupId>com.microsoft.sqlserver</groupId>-->
<!-- <artifactId>sqljdbc4</artifactId>-->
<!-- <version>4.0</version>-->
<!-- </dependency>-->
后面换了jtds连接成功了
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.3.1</version>
</dependency>
application.yml配置,hikari要配置connection-test-query
spring:
datasource:
hikari:
connection-timeout: 1000
connection-test-query: SELECT 1
driver-class-name: net.sourceforge.jtds.jdbc.Driver
url: jdbc:jtds:sqlserver://localhost:1433/product
username: sa
password:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。