错误信息1
The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utili
错误信息2
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.
解决方案
1.时区问题
jdbc:mysql://localhost:3306/student_ssm?serverTimezone=UTC
在链接时将库名后加上时区参数即可
2.时区问题加ssl问题
jdbc:mysql://localhost:3306/student_ssm?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
注意:&是为了有效的使用分号(;) --个人见解
有链接的大佬可以给个讲解一下&吗
本文详细解答了如何修正数据库链接中的时区错误(如'The timezone value'问题)和为不使用SSL的应用设置正确的verifyServerCertificate属性。提供了解决方案,包括设置serverTimezone参数和调整useSSL属性。
855

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



