oauth2的微服务中,警告:
Tue Sep 04 13:07:53 CST 2018 WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.
这个警告:
由于mysql版本过高创建连接的时候会出现如下报告
解决办法:在mysql连接上加上&useSSL=true
如下:jdbc:mysql:///:3366:test?useUnicode=true&characterEncoding=utf-8&useSSL=true
ssl是一种加密技术在客户端连接数据库的中间做了加密,TCP/IP层中。

在OAuth2的微服务中遇到MySQL SSL连接警告,警告提示未验证服务器身份的SSL连接不推荐。为遵循MySQL的要求,需要建立默认的SSL连接或设置verifyServerCertificate为false。解决方案是在MySQL连接URL中添加&useSSL=true,以确保SSL连接并进行服务器证书验证。
5813

被折叠的 条评论
为什么被折叠?



