Mon May 29 20:43:44 CST 2023 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.
时间: 2024-02-19 21:02:20 浏览: 468
kafka调试中遇到Connection to node -1 could not be established. Broker may not be available.
5星 · 资源好评率100%
这个警告信息看起来像是在使用Java连接MySQL时出现的,它提醒我们建立SSL连接时需要注意安全性,建议开启SSL连接并提供服务器证书的信任库进行验证。如果不想使用SSL连接,可以将useSSL设置为false。这个警告信息并不会影响到程序的运行,只是提醒我们在使用SSL连接时需要注意安全性。如果您有任何关于使用Java连接MySQL的问题,可以继续问我。
阅读全文