"Encrypt"属性设置为"true"且 "trustServerCertificate"属性设置为"false",但驱动程序无法使用安全套接字层 (SSL) 加密与 SQL Server 建立安全连接:错误:PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target。
通过yml配置时出现了上方的问题
spring:
datasource:
driver-class-name: com.microsoft.sqlserver.jdbc.SQLServerDriver
username: sa
password: 123456
url: jdbc:sqlserver://localhost:1433;databaseName=xxx;
这时候注意你的sql语句不能写错了,不然也会报错
在数据库名后面 ;trustServerCertificate=true 加上这个就可以了