使用c3p0连接mysql8.0以上问题

本文共有876个字,页面加载耗时0.001秒,关键词:

使用c3p0连接mysql8.0出现timeout解决方案

c3p0-0.9.5.2
mchange-commons-java-0.2.15
mysql-connector-java-8.0.11

链接: https://pan.baidu.com/s/1ogPPTwRZnP_eJSIl0gDa9w
提取码: psct

配置文件c3p0-config.xml

<c3p0-config>
  <!-- 使用默认的配置读取连接池对象 -->
  <default-config>
      <!--  连接参数 -->
    <property name="driverClass">com.mysql.cj.jdbc.Driver</property>
    <property name="jdbcUrl">jdbc:mysql://localhost:3306/study_01?useSSL=false&amp;serverTimezone=Hongkong&amp;characterEncoding=utf-8&amp;autoReconnect=true</property>
    <property name="user">root</property>
    <property name="password">123456</property>
    
    <!-- 连接池参数 -->
    <property name="initialPoolSize">5</property>
    <property name="maxPoolSize">10</property>
    <property name="checkoutTimeout">3000</property>
  </default-config>
</c3p0-config>

扫码在手机查看