c3p0连接池报错 A client timed out while waiting

今天在看c3p0连接池的时候,因为连接数据库疯狂报错

com.mchange.v2.resourcepool.TimeoutException: A client timed out while waiting to acquire a resource from com.mchange.v2.resourcepool.BasicResourcePool@1c83354 -- timeout at awaitAvailable()

最后查了百度谷歌等,发现谷歌是真的好用啊!!!

c3p0连接池报错 A client timed out while waiting_第1张图片
最后找到了解决办法如下:

c3p0连接池报错 A client timed out while waiting_第2张图片




    com.mysql.cj.jdbc.Driver
    jdbc:mysql://localhost:3306/shopping?useUnicode=true&characterEncoding=utf8&serverTimezone=UTC
    root
    123456

    5
    240
    60000
    1


配置的时候checkoutTimeout这个属性还是不够大,导致连接池还没获取到连接就自动暂停了。

把这个属性的值从3000改成60000就可以了。

你可能感兴趣的:(bug)