c3p0-config.xml

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c3p0-config.xml相关的知识,希望对你有一定的参考价值。

<?xml version="1.0" encoding="gbk"?>

<c3p0-config>
  <default-config>
      <!-- 连接数据库 -->
      <property name="driverClass">com.mysql.jdbc.Driver</property>
      <property name="jdbcUrl">jdbc:mysql:///mydb2</property>
      <property name="user">root</property>
      <property name="password">root</property>

    <property name="checkoutTimeout">30000</property>
    <property name="idleConnectionTestPeriod">30</property>
    <property name="initialPoolSize">10</property>
    <property name="maxIdleTime">30</property>
    <property name="maxPoolSize">100</property>
    <property name="minPoolSize">10</property>
    <property name="maxStatements">200</property>
  </default-config>
</c3p0-config>

以上是关于c3p0-config.xml的主要内容,如果未能解决你的问题,请参考以下文章

c3p0-0.9.5.2.jar 与 c3p0-0.9.1.2.jar

Hibernate/c3p0 连接泄漏

02_c3p0之c3p0-config.xml配置案例,操作c3p0的jdbcUtil工具类的编写

如何从 com.mchange.v2.c3p0.ComboPooledDataSource 请求特定连接?

在 Hibernate/C3P0 中处理连接池耗尽并避免死锁

如何使用c3p0+spring连接oracle数据库