记录使用JDBC连接数据库的时候遇到的问题

记录使用 JDBC连接数据库的时候遇到的问题

1、报错信息1:

java.lang.ClassNotFoundException: com.mysql.jdbc.Driver

可以参考这篇 java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
博主总结的很全,就不赘述了~

2、报错信息2:

com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
The last packet successfully received from the server was 528 milliseconds ago. The last packet sent successfully to the server was 523 milliseconds ago.

写的是jdbc连接失败,需要自己手动让打印报错信息,然后再一看发现其实是 报错信息3的问题,所以本质报错还是报错信息3。

3、报错信息3:

java.security.cert.CertificateException: java.security.cert.CertPathValidatorException: Path does not chain with any of the trust anchors
Path does not chain with any of the trust anchors

这写的就是安全证书异常,我写的关于jdbc的笔记在这里,10.5遇到的问题,其实主要就是因为在写配置文件db.properties的时候,我将 useSSL设置成了true ,改为 useSSL=false问题就解决了。
因为没有SSL证书就不需要SSL认证!

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