1、遇到如下问题
Sun Jan 09 14:19:41 CST 2022 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.
2、解决方法
在url后面加上如图的内容

如url后有多个参数,这样加入即可
spring.datasource.url=jdbc:mysql://localhost:3306/springboot?characterEncoding=utf-8&useSSL=false
本文介绍了一种在连接MySQL数据库时出现的SSL警告问题及解决方案。该警告提示建议禁用服务器身份验证或显式禁用SSL连接。文章提供了一个简单的方法来解决此问题:通过在数据库URL中添加useSSL=false参数。
537

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



