`
Josh_Persistence
  • 浏览: 1633169 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类

深入浅出数据库连接池c3p0

阅读更多
<div class="iteye-blog-content-contain" style="font-size: 14px;">
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">一、概述:</span></strong></p>
<p><span style="">     数据库连接池C3P0框架是个非常优异的开源jar,高性能的管理着数据源,c3p0有两种数据源管理方式,一种是通过程序变本身来进行管理,还有一种是通过容器管理,本节讨论通过程序本身来进行管理,下一节讨论通过容器进行管理。</span></p>
<p> </p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">二、c3p0的三种实现方式</span></strong></p>
<p> </p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">1、实现方式一:利用c3p0的API自己动手</span><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">写代码,实现数据源</span></strong></p>
<p><span style="">例如:在类路径下配置一个属性文件,config.properties,内容如下:</span></p>
<p> </p>
<pre name="code" class="java">driverClass=xxx
jdbcUrl=xxx
user=xxx
password=xxx</pre>
<p> </p>
<p> </p>
<p><span style="">相关的Java程序片段为:</span></p>
<p> </p>
<pre name="code" class="java">Properties props = new Properties();
InputStream in = Thread.class.getResourceAsStream("config.properties");
props.load(in);
in.close();

ComboPooledDataSource cpds = new ComboPooledDataSource();
cpds.setDriverClass(props.getProperty("driverClass"));
cpds.setJdbcUrl(props.getProperty("jdbcUrl"));
cpds.setUser(props.getProperty("user"));
cpds.setPassword(props.getProperty("password"));</pre>
<p> 这里只实现了一个数据源,也可以在类路径下配置一个xml文件,config.xml</p>
<p> </p>
<p> </p>
<pre name="code" class="xml">&lt;config&gt;
&lt;source name="source1"&gt;
&lt;property name="user"&gt;root&lt;/property&gt;
&lt;property name="password"&gt;xxx&lt;/property&gt;
&lt;property name="url"&gt;xxx&lt;/property&gt;
&lt;property name="driverClass"&gt;xxx&lt;/property&gt;
&lt;/source&gt;

&lt;source name="source2"&gt;
...
&lt;/source&gt;
&lt;/config&gt;</pre>
<p> <span style="">然后自己解析xml文件,这样可以实现多个数据源的配置</span></p>
<p> </p>
<p> </p>
<p> </p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">2、实现方式二:</span><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">类路径下提供一个c3p0.properties文件,文件名必须为c3p0.properties</span></strong></p>
<p><span style="">配置如下:</span></p>
<p> </p>
<pre name="code" class="xml">#驱动
c3p0.driverClass=com.mysql.jdbc.Driver
#地址
c3p0.jdbcUrl=jdbc:mysql://d-shc-00426378/tools
#用户名
c3p0.user=root
#密码
c3p0.password=root</pre>
<p> <span style="">这里只提供了最基本的配置项,其他配置项参照 </span><a style="" href="http://www.mchange.com/projects/c3p0/index.html#c3p0-config.xml" target="_blank">文档</a><span style="">配置,记得是c3p0.后面加属性名就是了,最后初始化数据源的方式就是这样简单:</span></p>
<p> </p>
<p> </p>
<pre name="code" class="java">...
DataSource  ds = new ComboPooledDataSource();
return ds;
...</pre>
<p> <span style="">然后就可以使用数据源了,C3P0会对c3p0.properties进行自动解析的。</span></p>
<p> </p>
<p> </p>
<p> </p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">3、实现方式二:</span><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">类</span></strong><span style=""><strong>路径下提供一个c3p0-config.xml文件</strong> <br></span></p>
<p><span style="">这种方式与第二种差不多,但是有更多的优点 </span><br style=""><span style="">(1).更直观明显,很类似hibernate和spring的配置</span><br style=""><span style="">(2).可以为多个数据源服务,提供default-config和named-config两种配置方式 <br></span></p>
<p> </p>
<pre name="code" class="xml">&lt;c3p0-config&gt;
  &lt;default-config&gt;  
    &lt;property name="user"&gt;root&lt;/property&gt;
    &lt;property name="password"&gt;java&lt;/property&gt;
    &lt;property name="driverClass"&gt;com.mysql.jdbc.Driver&lt;/property&gt;
    &lt;property name="jdbcUrl"&gt;jdbc:mysql://localhost:3306/jdbc&lt;/property&gt;

    &lt;property name="initialPoolSize"&gt;10&lt;/property&gt;
    &lt;property name="maxIdleTime"&gt;30&lt;/property&gt;
    &lt;property name="maxPoolSize"&gt;100&lt;/property&gt;
    &lt;property name="minPoolSize"&gt;10&lt;/property&gt;
  &lt;/default-config&gt;

  &lt;named-config name="mySource"&gt;
    &lt;property name="user"&gt;root&lt;/property&gt;
    &lt;property name="password"&gt;java&lt;/property&gt;
    &lt;property name="driverClass"&gt;com.mysql.jdbc.Driver&lt;/property&gt;
    &lt;property name="jdbcUrl"&gt;jdbc:mysql://localhost:3306/jdbc&lt;/property&gt;

    &lt;property name="initialPoolSize"&gt;10&lt;/property&gt;
    &lt;property name="maxIdleTime"&gt;30&lt;/property&gt;
    &lt;property name="maxPoolSize"&gt;100&lt;/property&gt;
    &lt;property name="minPoolSize"&gt;10&lt;/property&gt;
  &lt;/named-config&gt;
&lt;/c3p0-config&gt;</pre>
<p> </p>
<pre name="code" class="java">...
DataSource  ds = new ComboPooledDataSource("mySource");
return ds;
...</pre>
<p> <span style=""><span style="">这样就可以使用数据源了。</span></span></p>
<p> </p>
<p> </p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;"><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">三、实例,以第二种方式,即c3p0.propertis的方式为例说明</span></span></strong></p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;"><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">1、在classpath下创建一个文件,c3p0.properteis</span></span></strong></p>
<p> </p>
<pre name="code" class="xml">#驱动
c3p0.driverClass=com.mysql.jdbc.Driver
#地址
c3p0.jdbcUrl=jdbc:mysql://d-shc-00426378/tools
#用户名
c3p0.user=root
#密码
c3p0.password=root
#-------------------------------
#连接池初始化时创建的连接数
c3p0.initialPoolSize=3
#连接池保持的最小连接数
c3p0.minPoolSize=3
#连接池在无空闲连接可用时一次性创建的新数据库连接数,default:3
c3p0.acquireIncrement=3
#连接池中拥有的最大连接数,如果获得新连接时会使连接总数超过这个值则不会再获取新连接,而是等待其他连接释放,所以这个值有可能会设计地很大,default : 15
c3p0.maxPoolSize=15
#连接的最大空闲时间,如果超过这个时间,某个数据库连接还没有被使用,则会断开掉这个连接,单位秒
c3p0.maxIdleTime=100
#连接池在获得新连接失败时重试的次数,如果小于等于0则无限重试直至连接获得成功
c3p0.acquireRetryAttempts=30
#连接池在获得新连接时的间隔时间
c3p0.acquireRetryDelay=1000</pre>
<p> </p>
<p> </p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;"><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">2、封装一个C3p0ConnectionPool用来创建数据库连接</span></span></strong></p>
<p> </p>
<pre name="code" class="java">package com.wsheng.aggregator.c3p0;

import java.sql.Connection;
import java.sql.SQLException;

import javax.sql.DataSource;

import com.mchange.v2.c3p0.ComboPooledDataSource;

/**
* @author Josh Wang(Sheng)
*
* @email  josh_wang23@hotmail.com
*
*/
public class C3p0ConnectionPool {

private DataSource ds;

private static C3p0ConnectionPool pool;

private C3p0ConnectionPool() {
ds = new ComboPooledDataSource();
}

// 加上synchronized就是典型的同步模式
public static /*synchronized*/ final C3p0ConnectionPool getInstance() {
if (pool == null) {
try {
pool = new C3p0ConnectionPool();
} catch (Exception e) {
e.printStackTrace();
}
}

return pool;
}

// synchronized保证每个pool线程请求返回的都是不同的Connection
public synchronized final Connection getConnection() {
try {
Connection connection = ds.getConnection();
// 1)将配置文件中的c3p0.initialPoolSize,c3p0.minPoolSize,c3p0.maxPoolSize都改为1,然后执行查看结果
// 2)将配置文件中的c3p0.initialPoolSize,c3p0.minPoolSize,c3p0.maxPoolSize都改为较小的值,加大线程数,然后执行查看结果
System.out.println(" **** current connection number: " + ((ComboPooledDataSource)ds).getNumConnections()
+ " busy connection number: " + ((ComboPooledDataSource)ds).getNumBusyConnections()
+ " Idle connection nmuber: " + ((ComboPooledDataSource)ds).getNumIdleConnections());
return connection;
} catch (SQLException e) {
e.printStackTrace();
}

return null;
}


}
</pre>
<p> </p>
<p> </p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;"><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">3、创建模拟用户发起数据库连接的Thread类</span></span></strong></p>
<p> </p>
<pre name="code" class="java">package com.wsheng.aggregator.c3p0;

import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;

/**
* @author Josh Wang(Sheng)
*
* @email josh_wang23@hotmail.com
*
*/
public class C3p0PoolThread extends Thread {

@Override
public void run() {
C3p0ConnectionPool pool = C3p0ConnectionPool.getInstance();
Connection connection = null;
PreparedStatement stmt = null;
ResultSet rs = null;

try {
connection = pool.getConnection();
stmt = connection.prepareStatement("select sysdate() as nowtime from dual");
rs = stmt.executeQuery();
while (rs.next()) {
System.out.println(Thread.currentThread().getId() + "---------------开始" + rs.getString("nowtime")); 
}
} catch (Exception e) {
e.printStackTrace();
} finally {
try {
rs.close();
stmt.close();
connection.close();
} catch (Exception e) {
e.printStackTrace();
}
}

System.out.println(Thread.currentThread().getId() + "--------结束"); 

}


}
</pre>
<p> </p>
<p> </p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;"><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">4、Main类</span></span></strong></p>
<p> </p>
<pre name="code" class="java">package com.wsheng.aggregator.c3p0;

/**
* @author Josh Wang(Sheng)
*
* @email  josh_wang23@hotmail.com
*
*/
public class C3p0Main {

public static void main(String[] args) {
System.out.println("数据库连接池模拟开始");
        C3p0PoolThread[] threads = new C3p0PoolThread[100]; 
       
        for (int i = 0; i &lt; threads.length;i++) { 
            threads[i] = new C3p0PoolThread(); 
        } 
       
        for (int i= 0;i &lt; threads.length; i++) { 
            threads[i].start(); 
        } 
}

}
</pre>
<p><strong> 在C3p0Main.java中可以增加线程数,也可以再c3p0.properties中减少c3p0.maxPoolSize, c3p0.minPoolSize, c3p0.initialPoolSize等的值来查看执行结果。</strong></p>
<p> </p>
<p><strong>四、常用配置参数的说明:</strong></p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">1.最常用配置</span></strong></p>
<p> </p>
<p style=""><strong>initialPoolSize:</strong> 连接池初始化时创建的连接数,default : 3(建议使用)</p>
<p style=""><strong>minPoolSize: </strong>连接池保持的最小连接数,default : 3(建议使用)</p>
<p style=""><strong>maxPoolSize: </strong>连接池中拥有的最大连接数,如果获得新连接时会使连接总数超过这个值则不会再获取新连接,而是等待其他连接释放,所以这个值有可能会设计地很大,default : 15(建议使用)</p>
<p style=""><strong>acquireIncrement:</strong>连接池在无空闲连接可用时一次性创建的新数据库连接数,default : 3(建议使用)</p>
<p> </p>
<p> </p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">2.管理连接池的大小和连接的生存时间</span></strong></p>
<p> </p>
<p style=""><strong>maxConnectionAge</strong>:配置连接的生存时间,超过这个时间的连接将由连接池自动断开丢弃掉。当然正在使用的连接不会马上断开,而是等待它close再断开。配置为0的时候则不会对连接的生存时间进行限制。default : 0 单位 s(不建议使用)</p>
<p style=""> </p>
<p style=""><strong>maxIdleTime:</strong>连接的最大空闲时间,如果超过这个时间,某个数据库连接还没有被使用,则会断开掉这个连接。如果为0,则永远不会断开连接,即回收此连接。default : 0 单位 s(建议使用)</p>
<p style=""> </p>
<p style=""><strong>maxIdleTimeExcessConnections:</strong>这个配置主要是为了快速减轻连接池的负载,比如连接池中连接数因为某次数据访问高峰导致创建了很多数据连接,但是后面的时间段需要的数据库连接数很少,需要快速释放,必须小于maxIdleTime。其实这个没必要配置,maxIdleTime已经配置了。default : 0 单位 s(不建议使用)</p>
<p> </p>
<p><strong><span style="color: #000000; font-family: Helvetica,Tahoma,Arial,sans-serif; font-size: 14px; font-style: normal; font-variant: normal; letter-spacing: normal; line-height: 25.2px; text-align: left; text-indent: 0px; white-space: normal; display: inline ! important; float: none; background-color: #ffffff;">3.配置连接测试:</span></strong></p>
<p> </p>
<p style=""><strong>automaticTestTable:</strong>配置一个表名,连接池根据这个表名用自己的测试sql语句在这个空表上测试数据库连接,这个表只能由c3p0来使用,用户不能操作。default : null(不建议使用)</p>
<p style=""> </p>
<p style=""><strong>preferredTestQuery:</strong>与上面的automaticTestTable二者只能选一。自己实现一条SQL检测语句。default : null(建议使用)</p>
<p style=""> </p>
<p style=""><strong>idleConnectionTestPeriod:</strong>用来配置测试空闲连接的间隔时间。测试方式还是上面的两种之一,可以用来解决MySQL8小时断开连接的问题。因为它保证连接池会每隔一定时间对空闲连接进行一次测试,从而保证有效的空闲连接能每隔一定时间访问一次数据库,将于MySQL8小时无会话的状态打破。为0则不测试。default : 0(建议使用)</p>
<p style=""> </p>
<p style=""><strong>testConnectionOnCheckin:</strong>如果为true,则在close的时候测试连接的有效性。default : false(不建议使用)</p>
<p style=""> </p>
<p style=""><strong>testConnectionOnCheckout:</strong>性能消耗大。如果为true,在每次getConnection的时候都会测试,为了提高性能,尽量不要用。default : false(不建议使用)</p>
<p style=""> </p>
<p style=""><strong>4.配置PreparedStatement缓存:</strong></p>
<p style=""><strong>maxStatements:</strong>连接池为数据源缓存的PreparedStatement的总数。由于PreparedStatement属于单个Connection,所以这个数量应该根据应用中平均连接数乘以每个连接的平均PreparedStatement来计算。同时maxStatementsPerConnection的配置无效。default : 0(不建议使用)</p>
<p style=""> </p>
<p style=""><strong>maxStatementsPerConnection:</strong>连接池为数据源单个Connection缓存的PreparedStatement数,这个配置比maxStatements更有意义,因为它缓存的服务对象是单个数据连接,如果设置的好,肯定是可以提高性能的。为0的时候不缓存。default : 0(看情况而论)</p>
<p style=""> </p>
<p style=""><strong>5.重连相关配置 </strong></p>
<p style=""><strong>acquireRetryAttempts:</strong>连接池在获得新连接失败时重试的次数,如果小于等于0则无限重试直至连接获得成功。default : 30(建议使用)</p>
<p style=""> </p>
<p style=""><strong>acquireRetryDelay:</strong>连接池在获得新连接时的间隔时间。default : 1000 单位ms(建议使用)</p>
<p style=""> </p>
<p style=""><strong>breakAfterAcquireFailure:</strong>如果为true,则当连接获取失败时自动关闭数据源,除非重新启动应用程序。所以一般不用。default : false(不建议使用)</p>
<p style=""> </p>
<p style=""><strong>checkoutTimeout:</strong>配置当连接池所有连接用完时应用程序getConnection的等待时间。为0则无限等待直至有其他连接释放或者创建新的连接,不为0则当时间到的时候如果仍没有获得连接,则会抛出SQLException。其实就是acquireRetryAttempts*acquireRetryDelay。default : 0(与上面两个,有重复,选择其中两个都行)</p>
<p style=""> </p>
<p style=""><strong>6.定制管理Connection的生命周期</strong></p>
<p style=""><strong>connectionCustomizerClassName:</strong>用来定制Connection的管理,比如在Connection acquire 的时候设定Connection的隔离级别,或者在Connection丢弃的时候进行资源关闭,</p>
<p style="">就可以通过继承一个AbstractConnectionCustomizer来实现相关方法,配置的时候使用全类名。有点类似监听器的作用。default : null(不建议使用)</p>
<p style=""> </p>
<p style=""><strong>7.配置未提交的事务处理 </strong></p>
<p style=""><strong>autoCommitOnClose:</strong>连接池在回收数据库连接时是否自动提交事务。如果为false,则会回滚未提交的事务,如果为true,则会自动提交事务。default : false(不建议使用)</p>
<p style=""><strong>forceIgnoreUnresolvedTransactions:</strong>这个配置强烈不建议为true。default : false(不建议使用)</p>
<p style="">一般来说事务当然由自己关闭了,为什么要让连接池来处理这种不细心问题呢?</p>
<p style=""> </p>
<p style=""><strong>8.配置debug和回收Connection</strong></p>
<p style=""><strong>unreturnedConnectionTimeout:</strong>为0的时候要求所有的Connection在应用程序中必须关闭。如果不为0,则强制在设定的时间到达后回收Connection,所以必须小心设置,保证在回收之前所有数据库操作都能够完成。这种限制减少Connection未关闭情况的不是很适用。建议手动关闭。default : 0 单位 s(不建议使用)</p>
<p style=""> </p>
<p style=""><strong>debugUnreturnedConnectionStackTraces:</strong>如果为true并且unreturnedConnectionTimeout设为大于0的值,当所有被getConnection出去的连接unreturnedConnectionTimeout时间到的时候,就会打印出堆栈信息。只能在debug模式下适用,因为打印堆栈信息会减慢getConnection的速度default : false(不建议使用)</p>
<p style=""> </p>
<p style="">其他配置项:因为有些配置项几乎没有自己配置的必要,使用默认值就好,所以没有再写出来。</p>
<p> </p>
</div>
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics