IDEA中连接数据库失败

处理IDEA中连接数据库报错:
报错提示:
[08001] Could not create connection to database server. Attempted reconnect 3 times. Giving up.
出现这种问题的原因有两种
1.安装数据库是选择的位置区域不在中国有时差
处理方法:
jdbc:mysql://localhost:3306/数据库名称?useUnicode=true&characterEncoding=UTF-8&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
IDEA中连接数据库失败_第1张图片

2.电脑中安装的mysql和IDEA中导入的mysal以及连接是使用的IDEA版本不一样
处理方法:
1.修改pom.xml中的版本
IDEA中连接数据库失败_第2张图片
2、修改DataBase中数据库的版本
IDEA中连接数据库失败_第3张图片
IDEA中连接数据库失败_第4张图片
再次连接就可以了

你可能感兴趣的:(数据库,mysql)