Could not create connection to database server解决方法

Could not create connection to database server解决方法

是由于mysql版本与驱动不匹配所导致的

查看mysql版本

select version() from dual;

Could not create connection to database server解决方法_第1张图片

如果你的查出了的向我上面一样说明你的jdk版本为8.0版本,此时如果你导入的不是8.0的jar包,就是出现上述报错,例如我们导入的是5.0的jar包

在这里插入图片描述

解决办法

下载一个8.0的jar包

链接:https://pan.baidu.com/s/1gTKoAYoKVoo8pitZGLeAbQ
提取码:clhp

注意:如果你的MySQL是其他版本,你可以到官网上面下载其他版本

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