Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+
时间: 2023-10-28 11:53:50 浏览: 194
mysql-connector-java-8.0.11.jar
5星 · 资源好评率100%
documentation, when establishing an SSL connection between a client and a server, it is recommended to verify the server's identity to ensure the connection is secure and not being intercepted by a third party. This can be done by verifying the server's SSL certificate. If the client does not verify the server's identity, it may be vulnerable to man-in-the-middle attacks. Therefore, it is strongly advised to always enable server identity verification when establishing an SSL connection.
阅读全文