异常一:IDEA连接mysql8.0.16,报[08001] Could not create connection to database server.
Connection to icloud_db@localhost failed.
[08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up.
解决方式:
-
mysql5.5 使用:com.mysql.jdbc.Driver而8.0.*版本用com.mysql.cj.jdbc.Driver
-
追加useSSL+serverTimezone+characterEncoding+autoReconnect
jdbc:mysql://localhost:3306/icloud_db?useSSL=false&serverTimezone=Hongkong&characterEncoding=utf-8&autoReconnect=true
mysql的连接驱动配置在这个位置,idea—>Database—>"+"---->>data source—>>mysql