问题:JDBC连接本地数据库时报错如下:
Clearing pending acquires. While trying to acquire a needed new resource, we failed to succeed more than the maximum number of allowed acquisition attempts (30). Last acquisition attempt exception: com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnect
解决:
查询本地数据库版本为8.0.20
mysql驱动从5切换到8.0.21版本后,连接数据库报错
更换回原来的5版本后测试连接成功,看来JDBC连接数据库报错不是驱动版本的问题。
突然想到,pom.xml文件里面的mysql驱动依赖包和idea 中database的驱动版本不一致,改为一致,问题解决。
排错参考资料:
https://blog.csdn.net/weixin_39928544/article/details/113356499