问题:
Fri Dec 11 18:28:21 CST 2015 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.
解决方案:
使用hibernate进行数据库连接时,发生了SSL连接错误。
需要在hibernate数据库连接配置文件 加上:
<property name="connection.url">
jdbc:mysql://localhost:3306/xxxx?useSSL=false&autoReconnect=true </property>
本文解决了一个关于使用Hibernate进行数据库连接时出现的SSL连接警告问题。建议通过设置useSSL参数为false来禁用SSL连接,或者提供信任存储来进行服务器证书验证。

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



