背景
一般我们在项目中操作数据库时,都是每次需要操作数据库就建立一个连接,操作完成后释放连接。因为jdbc没有保持连接的能力,一旦超过一定时间没有使用(大约几百毫秒),连接就会被自动释放掉。而每次新建连接都需要140毫秒左右的时间,所以耗费时间比较多。若使用C3P0连接池来池化连接,随时取用,则平均每次取用只需要10-20毫秒。这在高并发随机访问数据库的时候对效率的提升有很大帮助。
C3P0连接池会根据你的配置来初始化N个数据库连接,空闲T时间后连接过期又会自动新建K个连接使得连接池总有空闲的数据库连接等待被取用。我们只需通过dataSourse.getConnection()即可从线程池中取用一个已经连接好的空闲连接,执行数据库操作。然后“断开”(放回)这个连接,把这个连接的使用权放回连接池。真正的数据库连接的创建与释放是由C3P0在后台自动完成的,我们花的只是取用与释放占用权的时间。全程耗时10+毫秒,比原来提高了几十倍
下载
c3p0下载地址:https://sourceforge.net/projects/c3p0/files/latest/download?source=files 下载完成后,将解压出来有3个jar包:
将这三个jar包导入项目中, 在src目录下新建一个名叫 c3p0-config.xml 的文件,注意,必须是这个文件名。
配置
c3p0-config.xml的示例代码如下图所示:
<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config> <!-- 默认配置 --> <default-config> <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> <!-- 配置oracle连接池 --> <named-config name="oracle"> <property name="driverClass">oracle.jdbc.driver.OracleDriver</property> <property name="jdbcUrl">jdbc:oracle:thin:@192.168.1.138:1521:ecology</property> <property name="user">test1028</property> <property name="password">test1028</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> </named-config> <!--配置连接池mysql--><named-config name="mysql"> <property name="driverClass">com.mysql.jdbc.Driver</property> <property name="jdbcUrl">jdbc:mysql://192.168.1.123:3306/CoupleSpace</property> <property name="user">root</property> <property name="password">root</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> </named-config> <!-- 配置其他连接池-->
</c3p0-config>
更细致的配置说明如下图所示:
<!--acquireIncrement:链接用完了自动增量3个。 --><property name="acquireIncrement">3</property><!--acquireRetryAttempts:链接失败后重新试30次。--><property name="acquireRetryAttempts">30</property><!--acquireRetryDelay;两次连接中间隔1000毫秒。 --><property name="acquireRetryDelay">1000</property><!--autoCommitOnClose:连接关闭时默认将所有未提交的操作回滚。 --><property name="autoCommitOnClose">false</property><!--automaticTestTable:c3p0测试表,没什么用。--><property name="automaticTestTable">Test</property><!--breakAfterAcquireFailure:出错时不把正在提交的数据抛弃。--><property name="breakAfterAcquireFailure">false</property><!--checkoutTimeout:100毫秒后如果sql数据没有执行完将会报错,如果设置成0,那么将会无限的等待。 --> <property name="checkoutTimeout">100</property><!--connectionTesterClassName:通过实现ConnectionTester或QueryConnectionTester的类来测试连接。类名需制定全路径。Default: com.mchange.v2.c3p0.impl.DefaultConnectionTester--><property name="connectionTesterClassName"></property><!--factoryClassLocation:指定c3p0 libraries的路径,如果(通常都是这样)在本地即可获得那么无需设置,默认null即可。--><property name="factoryClassLocation">null</property><!--forceIgnoreUnresolvedTransactions:作者强烈建议不使用的一个属性。--> <property name="forceIgnoreUnresolvedTransactions">false</property><!--idleConnectionTestPeriod:每60秒检查所有连接池中的空闲连接。--> <property name="idleConnectionTestPeriod">60</property><!--initialPoolSize:初始化时获取三个连接,取值应在minPoolSize与maxPoolSize之间。 --> <property name="initialPoolSize">3</property><!--maxIdleTime:最大空闲时间,60秒内未使用则连接被丢弃。若为0则永不丢弃。--><property name="maxIdleTime">60</property><!--maxPoolSize:连接池中保留的最大连接数。 --><property name="maxPoolSize">15</property><!--maxStatements:最大链接数。--><property name="maxStatements">100</property><!--maxStatementsPerConnection:定义了连接池内单个连接所拥有的最大缓存statements数。Default: 0 --><property name="maxStatementsPerConnection"></property><!--numHelperThreads:异步操作,提升性能通过多线程实现多个操作同时被执行。Default: 3--> <property name="numHelperThreads">3</property><!--overrideDefaultUser:当用户调用getConnection()时使root用户成为去获取连接的用户。主要用于连接池连接非c3p0的数据源时。Default: null--> <property name="overrideDefaultUser">root</property><!--overrideDefaultPassword:与overrideDefaultUser参数对应使用的一个参数。Default: null--><property name="overrideDefaultPassword">password</property><!--password:密码。Default: null--> <property name="password"></property><!--preferredTestQuery:定义所有连接测试都执行的测试语句。在使用连接测试的情况下这个一显著提高测试速度。注意: 测试的表必须在初始数据源的时候就存在。Default: null--><property name="preferredTestQuery">select id from test where id=1</property><!--propertyCycle:用户修改系统配置参数执行前最多等待300秒。Default: 300 --> <property name="propertyCycle">300</property><!--testConnectionOnCheckout:因性能消耗大请只在需要的时候使用它。Default: false --><property name="testConnectionOnCheckout">false</property><!--testConnectionOnCheckin:如果设为true那么在取得连接的同时将校验连接的有效性。Default: false --><property name="testConnectionOnCheckin">true</property><!--user:用户名。Default: null--><property name="user">root</property><!--usesTraditionalReflectiveProxies:动态反射代理。Default: false--><property name="usesTraditionalReflectiveProxies">false</property>
使用方式
新建一个c3p0的工具类,如下图所示:
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.mchange.v2.c3p0.ComboPooledDataSource;public class C3P0Util { static ComboPooledDataSource dataSource = new ComboPooledDataSource("oracle");/*** 获取数据库连接* @return* @throws SQLException */public static Connection getConnection() throws SQLException{return dataSource.getConnection();}/*** 关闭数据库连接* @throws SQLException */public static void closeConnection(Connection connection,PreparedStatement preparedStatement,ResultSet resultSet) throws SQLException{if (connection!=null && !connection.isClosed()) {connection.close();}if (preparedStatement!=null && !preparedStatement.isClosed()) {preparedStatement.close();}if (resultSet != null && !resultSet.isClosed()) {resultSet.close();}}
}
在jdbc中使用c3p0工具类获得连接并查询数据:
public ArrayList<Dept> queryDepts() throws SQLException{ArrayList<Dept> depts = new ArrayList<Dept>();try(Connection connection = C3P0Util.getConnection();PreparedStatement stmt=connection.prepareStatement("select * from ecology09171.bm");ResultSet rs=stmt.executeQuery();){while(rs.next()){Dept dept = new Dept();long id = rs.getLong("ID");String departmentName = rs.getString("DEPARTMENTNAME");long supDepID = rs.getLong("SUPDEPID");long subCompanyID1 = rs.getLong("SUBCOMPANYID1");String departmentMark = rs.getString("DEPARTMENTMARK");String canceled = rs.getString("CANCELED");dept.setID(id);dept.setSUPDEPID(supDepID);dept.setSUBCOMPANYID1(subCompanyID1);dept.setDEPARTMENTNAME(departmentName);dept.setDEPARTMENTMARK(departmentMark);dept.setCANCELED(canceled);depts.add(dept);}return depts;}}