解决Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: The server time zone value

连接数据库遇到如下问题:
Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeException: 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 configurat

此问题为时区问题,在 JDBC 的连接 url 部分加上 serverTimezone=Asia/Shanghai或者serverTimezone=Asia/Hongkong 即可。

url: jdbc:mysql://localhost:3306/mydb01?serverTimezone=Asia/Shanghai

你可能感兴趣的:(错误处理方式)