解决idea中mysql连接失败Could not create connection to database server. Attempted reconnect 3 times. Giving up.

2019-08-09 00:00:00 连接 解决 失败

原因是少一个参数,设置时区的。

《解决idea中mysql连接失败Could not create connection to database server. Attempted reconnect 3 times. Giving up.》

 

 解决方法:

加一个参数:

serverTimezone=UTC
jdbc:mysql://localhost:3306/SshProject?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC

  

 

相关文章