连接数据库时 不加serverTimezone=CTT会报错 java.sql.SQLException: The server time zone value(时区)
配置文件
spring:
datasource:
url: jdbc:mysql://localhost/XXX?characterEncoding=utf-8&useSSl=false&serverTimezone=CTT
报错情况如下
java.sql.SQLException: 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 utilize time zone support.
本文详细解析了在连接MySQL数据库时未正确设置serverTimezone参数导致的java.sql.SQLException异常,提供了配置文件中正确的参数设置示例,帮助读者避免因时区设置不当引起的数据库连接问题。
1065

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



