直接用默认配置连接的话,会报以下错误:
Connection to MySQL - @localhost failed.
[08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up.
原因是MySQL的连接字符串需要配置ServerTimezone属性,可以用UTC、Hongkong、Asiz/Shanghai等。
如果使用UTC的话会有8小时时差,所以建议使用Hongkong或Asiz/Shanghai。
例如:
jdbc:mysql://localhost:3306/?serverTimezone=Asia/Shanghai
jdbc:mysql://localhost:3306/MyDB?serverTimezone=Asia/Shanghai
* 注意大小写,写错了也会连接失败