MySQL---第三方连接池---c3p0

18 篇文章 1 订阅

需要jar包:c3p0-0.9.1.2.jar 还有最基本的 mysql-connector-java-5.1.35-bin.jar。

下面演示不使用配置文件

	@Test //技术入口: com.mchange.v2.c3p0.ComboPooledDataSource
	public void demo1() throws SQLException, PropertyVetoException {
		//下面这一句相当于创建了一个池
		ComboPooledDataSource cpds = new ComboPooledDataSource();
		//下面开始给这个池配置信息。
		cpds.setDriverClass("com.mysql.jdbc.Driver");
		cpds.setJdbcUrl("jdbc:mysql://127.0.0.1:3306/hncu?useUnicode=true&characterEncoding=utf-8");
		cpds.setUser("root");
		cpds.setPassword("1234");
		//接下来就可以获取连接了,进行查询了。
		Connection con = cpds.getConnection();
		Statement st = con.createStatement();
		ResultSet resultSet = st.executeQuery("show databases");
		while ( resultSet.next() ) {
			System.out.println( resultSet.getString(1) );
		}
		System.out.println("------------------------------");
		System.out.println( cpds.getMaxConnectionAge() );
		System.out.println( cpds.getMaxIdleTime() );
		System.out.println( cpds.getAcquireIncrement());
		System.out.println( cpds.getAcquireRetryAttempts());
		System.out.println( cpds.getAcquireRetryDelay());
		System.out.println( cpds.getInitialPoolSize());
		System.out.println( cpds.getThreadPoolSize());
		System.out.println( cpds.getMaxPoolSize());
		System.out.println( cpds.getMinPoolSize());
		System.out.println(cpds.getThreadPoolNumActiveThreads());
	}

使用配置文件,该方式面向接口。配置文件必须在src目录下,而且名称:c3p0-config.xml,c3p0写死了!!!

配置文件信息:

<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
	<!-- 默认配置,如果没有指定则使用这个配置 -->
	<default-config>
		<property name="driverClass">com.mysql.jdbc.Driver</property>
		<property name="jdbcUrl">
			<![CDATA[jdbc:mysql://127.0.0.1:3306/hncu?useUnicode=true&characterEncoding=UTF-8]]>
		</property>
		<property name="user">root</property>
		<property name="password">1234</property>
		<!-- 初始化池大小 -->
		<property name="initialPoolSize">2</property>
		<!-- 最大空闲时间 -->
		<property name="maxIdleTime">30</property>
		<!-- 最多有多少个连接 -->
		<property name="maxPoolSize">10</property>
		<!-- 最少几个连接 -->
		<property name="minPoolSize">2</property>
		<!-- 每次最多可以执行多少个批处理语句 -->
		<property name="maxStatements">50</property>
	</default-config> 
	<!-- 命名的配置 -->
	<named-config name="hncu">
		<property name="driverClass">com.mysql.jdbc.Driver</property>
		<property name="jdbcUrl">
			<![CDATA[jdbc:mysql://127.0.0.1:3306/hncu?useUnicode=true&characterEncoding=UTF-8]]>
		</property>
		<property name="user">root</property>
		<property name="password">1234</property>
		<property name="acquireIncrement">5</property><!-- 如果池中数据连接不够时一次增长多少个 -->
		<property name="initialPoolSize">100</property>
		<property name="minPoolSize">50</property>
		<property name="maxPoolSize">1000</property>
		<property name="maxStatements">0</property>
		<property name="maxStatementsPerConnection">5</property> <!-- he's important, but there's only one of him -->
	</named-config>
</c3p0-config> 

演示代码:

	@Test
	public void demo2() throws SQLException {
		//配置文件必须在src目录下,c3p0写死了!!!
		DataSource ds = new ComboPooledDataSource();//不带参数时:使用的是<default-config>中的配置信息
		//DataSource cpds = new ComboPooledDataSource("hncu"); //带参数时:使用的是配置文件中 <named-config name="hncu">中的配置信息
		//接下来就可以获取连接了,进行查询了。
		Connection con = ds.getConnection();
		Statement st = con.createStatement();
		ResultSet resultSet = st.executeQuery("show databases");
		while ( resultSet.next() ) {
			System.out.println( resultSet.getString(1) );
		}
		//强转为查看信息
		ComboPooledDataSource cpds = (ComboPooledDataSource) ds;
		System.out.println("------------------------------");
		System.out.println( "MaxConnectionAge:"+cpds.getMaxConnectionAge() );
		System.out.println( "MaxIdleTime:"+cpds.getMaxIdleTime() );
		System.out.println( "AcquireIncrement:"+cpds.getAcquireIncrement());
		System.out.println( "AcquireRetryAttempts:"+cpds.getAcquireRetryAttempts());
		System.out.println( "AcquireRetryDelay:"+cpds.getAcquireRetryDelay());
		System.out.println( "InitialPoolSize:"+cpds.getInitialPoolSize());
		System.out.println( "ThreadPoolSize:"+cpds.getThreadPoolSize());
		System.out.println( "MaxPoolSize:"+cpds.getMaxPoolSize());
		System.out.println( "MinPoolSize:"+cpds.getMinPoolSize());
		System.out.println( "ThreadPoolNumActiveThreads:"+cpds.getThreadPoolNumActiveThreads());
		System.out.println("------------------------------");
		for( int i = 0; i < 18; i++ ) {
			Connection con2 = ds.getConnection();
			System.out.println(con2.hashCode());
			System.out.println( "ThreadPoolNumActiveThreads:"+cpds.getThreadPoolNumActiveThreads());
			if( i%2==0 ) {
				con2.close();
			}
		}
	}

采用c3p0连接池+ThreadLocal制作一个工具类:实现一个线程最多只能有一个连接。

工具类

package cn.hncu.dbPool.c3p0;


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

import javax.sql.DataSource;

import com.mchange.v2.c3p0.ComboPooledDataSource;
/**
 * &emsp;&emsp;c3p0工具<br/>
 * &emsp;&emsp;<b>注意</b>:必须在src下面有一个配置文件:c3p0-config.xml,名称和路径都是写死的!!!
 * <br/><br/><b>CreateTime:</b><br/>&emsp;&emsp;&emsp;2018年9月23日 下午2:11:12	
 * @author 宋进宇&emsp;<a href='mailto:447441478@qq.com'>447441478@qq.com</a>
 */
public class C3p0Utils {
	//数据库连接池
	private static DataSource ds;
	//线程局部变量池
	private static ThreadLocal<Connection> tlPool = new ThreadLocal<Connection>();
	//初始化数据库连接池
	static {
		//注意:必须在src下面有一个配置文件:c3p0-config.xml,名称和路径都是写死的!!!
		ds = new ComboPooledDataSource();
	}
	/**
	 * 获得c3p0连接池
	 * @return c3p0连接池对象
	 */
	public static DataSource getDataSource() {
		return ds;
	}
	/**
	 * 获取一个数据库连接
	 * @return 数据库连接对象
	 * @throws SQLException 
	 */
	public static Connection getConnection() throws SQLException {
		//先从线程局部变量池中获取当前线程拥有数据库连接
		Connection con = tlPool.get();
		//如果当前线程拥有的数据库连接为null或者是closed状态,那么从连接池中获取一个连接
		if( con == null || con.isClosed() ) {
			//从连接池中获取一个连接
			con = ds.getConnection();
			//把获取到的连接放到线程局部变量池中,以便同一个线程共享一个数据库连接。
			tlPool.set(con);
		}
		return con;
	}
}

详细的配置文件信息

<c3p0-config>    
    <default-config>    
    <!--当连接池中的连接耗尽的时候c3p0一次同时获取的连接数。Default: 3 -->    
    <property name="acquireIncrement">3</property>    
      
    <!--定义在从数据库获取新连接失败后重复尝试的次数。Default: 30 -->    
    <property name="acquireRetryAttempts">30</property>    
      
    <!--两次连接中间隔时间,单位毫秒。Default: 1000 -->    
    <property name="acquireRetryDelay">1000</property>    
      
    <!--连接关闭时默认将所有未提交的操作回滚。Default: false -->    
    <property name="autoCommitOnClose">false</property>    
      
    <!--c3p0将建一张名为Test的空表,并使用其自带的查询语句进行测试。如果定义了这个参数那么    
    属性preferredTestQuery将被忽略。你不能在这张Test表上进行任何操作,它将只供c3p0测试    
    使用。Default: null-->    
    <property name="automaticTestTable">Test</property>    
      
    <!--获取连接失败将会引起所有等待连接池来获取连接的线程抛出异常。但是数据源仍有效    
    保留,并在下次调用getConnection()的时候继续尝试获取连接。如果设为true,那么在尝试    
    获取连接失败后该数据源将申明已断开并永久关闭。Default: false-->    
    <property name="breakAfterAcquireFailure">false</property>    
      
    <!--当连接池用完时客户端调用getConnection()后等待获取新连接的时间,超时后将抛出    
    SQLException,如设为0则无限期等待。单位毫秒。Default: 0 -->    
    <property name="checkoutTimeout">100</property>    
      
    <!--通过实现ConnectionTester或QueryConnectionTester的类来测试连接。类名需制定全路径。    
    Default: com.mchange.v2.c3p0.impl.DefaultConnectionTester-->    
    <property name="connectionTesterClassName"></property>    
      
    <!--指定c3p0 libraries的路径,如果(通常都是这样)在本地即可获得那么无需设置,默认null即可    
    Default: null-->    
    <property name="factoryClassLocation">null</property>    
      
    <!--Strongly disrecommended. Setting this to true may lead to subtle and bizarre bugs.    
    (文档原文)作者强烈建议不使用的一个属性-->    
    <property name="forceIgnoreUnresolvedTransactions">false</property>    
      
    <!--每60秒检查所有连接池中的空闲连接。单位秒。Default: 0 -->    
    <property name="idleConnectionTestPeriod">60</property>    
      
    <!--初始化时获取三个连接,取值应在minPoolSize与maxPoolSize之间。Default: 3 -->    
    <property name="initialPoolSize">3</property>    
      
    <!--最大空闲时间,60秒内未使用则连接被丢弃。若为0则永不丢弃。Default: 0 -->    
    <property name="maxIdleTime">60</property>    
      
    <!--连接池中保留的最大连接数。Default: 15 -->    
    <property name="maxPoolSize">15</property>    
      
    <!--JDBC的标准参数,用以控制数据源内加载的PreparedStatements数量。但由于预缓存的statements    
    属于单个connection而不是整个连接池。所以设置这个参数需要考虑到多方面的因素。    
    如果maxStatements与maxStatementsPerConnection均为0,则缓存被关闭。Default: 0-->    
    <property name="maxStatements">100</property>    
      
    <!--maxStatementsPerConnection定义了连接池内单个连接所拥有的最大缓存statements数。Default: 0 -->    
    <property name="maxStatementsPerConnection"></property>    
      
    <!--c3p0是异步操作的,缓慢的JDBC操作通过帮助进程完成。扩展这些操作可以有效的提升性能    
    通过多线程实现多个操作同时被执行。Default: 3-->    
    <property name="numHelperThreads">3</property>    
      
    <!--当用户调用getConnection()时使root用户成为去获取连接的用户。主要用于连接池连接非c3p0    
    的数据源时。Default: null-->    
    <property name="overrideDefaultUser">root</property>    
      
    <!--与overrideDefaultUser参数对应使用的一个参数。Default: null-->    
    <property name="overrideDefaultPassword">password</property>    
      
    <!--密码。Default: null-->    
    <property name="password"></property>    
      
    <!--定义所有连接测试都执行的测试语句。在使用连接测试的情况下这个一显著提高测试速度。注意:    
    测试的表必须在初始数据源的时候就存在。Default: null-->    
    <property name="preferredTestQuery">select id from test where id=1</property>    
      
    <!--用户修改系统配置参数执行前最多等待300秒。Default: 300 -->    
    <property name="propertyCycle">300</property>    
      
    <!--因性能消耗大请只在需要的时候使用它。如果设为true那么在每个connection提交的    
    时候都将校验其有效性。建议使用idleConnectionTestPeriod或automaticTestTable    
    等方法来提升连接测试的性能。Default: false -->    
    <property name="testConnectionOnCheckout">false</property>    
      
    <!--如果设为true那么在取得连接的同时将校验连接的有效性。Default: false -->    
    <property name="testConnectionOnCheckin">true</property>    
      
    <!--用户名。Default: null-->    
    <property name="user">root</property>    
      
    <!--早期的c3p0版本对JDBC接口采用动态反射代理。在早期版本用途广泛的情况下这个参数    
    允许用户恢复到动态反射代理以解决不稳定的故障。最新的非反射代理更快并且已经开始    
    广泛的被使用,所以这个参数未必有用。现在原先的动态反射与新的非反射代理同时受到    
    支持,但今后可能的版本可能不支持动态反射代理。Default: false-->    
    <property name="usesTraditionalReflectiveProxies">false</property>  
      
    <property name="automaticTestTable">con_test</property>    
    <property name="checkoutTimeout">30000</property>    
    <property name="idleConnectionTestPeriod">30</property>    
    <property name="initialPoolSize">10</property>    
    <property name="maxIdleTime">30</property>    
    <property name="maxPoolSize">25</property>    
    <property name="minPoolSize">10</property>    
    <property name="maxStatements">0</property>    
    <user-overrides user="swaldman">    
    </user-overrides>    
    </default-config>    
    <named-config name="dumbTestConfig">    
    <property name="maxStatements">200</property>    
    <user-overrides user="poop">    
    <property name="maxStatements">300</property>    
    </user-overrides>    
    </named-config>    
</c3p0-config>

源码链接

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值