mySql连接报错

问题:

mySql链接报错如下:

解决:

设定时区

在链接URL增加?serverTimezone=UTC,变为jdbc:mysql://localhost:3306/TEST?serverTimezone=UTC

或增加更多设置字符串

?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC

结果:

原文地址:https://www.cnblogs.com/feichangnice/p/9835421.html