An attempt by a client to checkout a Connection has timed out.(c3p0连接超时问题)

c3p0连接超时问题

报错信息:
An attempt by a client to checkout a Connection has timed out.(c3p0连接超时问题)
An attempt by a client to checkout a Connection has timed out.

报错原因:
版本问题:mysql8和mysql5的在c3p0-config.xml中的配置有区别。

解决办法:

第一步:
property name="driverClass"中的com.mysql.jdbc.Driver
改成
com.mysql.cj.jdbc.Driver

第二步:
property name="jdbcUrl"中的jdbc:mysql://localhost:3306/account(自己的表名)
改成
jdbc:mysql://localhost:3306/account?useSSL=false&serverTimezone=UTC

最后完成