数据库连接池之C3P0

数据库连接池之C3P0 前言 在上一小节中,我们接触了数据库连接池的,了解了数据库连接池的作用,并且通过小案例使用DBCP来操作数据库,这一小节,我们接着了解数据库连接池的另外一种实现C3P0
C3P0的简单介绍

C3P0是一个开源的数据库连接池,实现了数据源和JNDI的绑定,支持JDBC3规定和JDBC2规定,目前Hibernate以及Spring都在使用该技术 ---- 百科
C3P0的使用 这里笔者使用Maven来进行项目的管理,如果对Maven还不了解的读者,可以参考笔者之前写过的关于Maven的几篇文章,这里就不进行展开,开发工具笔者使用IDEA
建立一个简单的Maven工程之后,添加对应的依赖,如下所示:
mysql mysql-connector-java 5.1.41 c3p0 c3p0 0.9.1.2

这里同样需要对数据库连接池进行简单的设置,笔者这里直接采用上一小节的配置文件,当然具体的内容可能不同,但是大部分的设置是相同的,比如最大连接数等等这些,配置如下所示:
# 配置所所需要使用的驱动 db.driverClassName=com.mysql.jdbc.Driver # URL db.url=jdbc:mysql://localhost:3306/spring # 用户名 db.username=root # 密码 db.password=huanfeng# 初始化大小 dataSource.initialSize=10 # 最大空闲数量 dataSource.maxIdle=20 # 最小空闲数量 dataSource.minIdle=5 # 最大活跃数量 dataSource.maxActive=50 # 最长等待时间,单位是ms dataSource.maxWait=1000

编写一个静态工具类,用于加载properties文件,如下所示:
public class C3P0Test {private static ComboPooledDataSource comboPooledDataSource; private static void init(){ // 创建C3P0的连接池,注意与DBCP的区别 comboPooledDataSource = new ComboPooledDataSource(); InputStream inputStream = C3P0Test.class.getClassLoader().getResourceAsStream("dbconfig.properties"); Properties properties = new Properties(); try { properties.load(inputStream); comboPooledDataSource.setUser(properties.getProperty("db.username")); comboPooledDataSource.setPassword(properties.getProperty("db.password")); comboPooledDataSource.setJdbcUrl(properties.getProperty("db.url")); comboPooledDataSource.setDriverClass(properties.getProperty("db.driverClassName")); comboPooledDataSource.setInitialPoolSize(Integer.parseInt(properties.getProperty("dataSource.initialSize"))); comboPooledDataSource.setMaxIdleTime(Integer.parseInt(properties.getProperty("dataSource.maxIdle"))); comboPooledDataSource.setMaxPoolSize(Integer.parseInt(properties.getProperty("dataSource.maxActive"))); comboPooledDataSource.setMaxIdleTimeExcessConnections(Integer.parseInt(properties.getProperty("dataSource.maxWait"))); } catch (IOException e) { e.printStackTrace(); } catch (PropertyVetoException e) { e.printStackTrace(); } }public synchronized static Connection getConnection(){ if (comboPooledDataSource == null){ init(); } try { return comboPooledDataSource.getConnection(); } catch (SQLException e) { e.printStackTrace(); } return null; } }

【数据库连接池之C3P0】看到上面的内容,相信细心的读者会发现,其中除了连接池的对象不同以及对象的方法名不同之外,其他的内容跟上一小节DBCP是基本一样的,这就是遵循规范的好处,只要对其中一个内容有所了解,其他相关的内容很快就能上手了。
测试代码如下所示(这里同样复用上一小节的测试代码):
public static void main(String[] args) { try { Connection connection =getConnection(); if (connection != null) { String sql = "select * from t_user"; PreparedStatement preparedStatement = connection.prepareStatement(sql); ResultSet resultSet = preparedStatement.executeQuery(); while (resultSet.next()) { System.out.printf("%s %s\n", resultSet.getString("user_name"), resultSet.getString("password")); } }else{ System.out.println("获取Connection失败"); } } catch (SQLException e) { e.printStackTrace(); } }

对应的输出内容跟上一小节是一致的,这个必然的嘛,而且细心的读者应该会发现,控制台同样会输出十句连接创建的记录,这同样说明了连接池初始化的时候就按照我们设定的初始化值进行初始化了。
DBCP与C3P0的区别 相信看完上面内容以及上一小节内容的读者会发现,这两者的使用似乎除了对象不同以及少部分方法名不同之外,其他的内容跟基本是一样的,可能读者会有这样的疑问,那这两者都存在的意义是什么呢?所谓存在即合理嘛,既然他们同时存在,那么必然是有区别的,区别如下(仅仅是参考,读者尚未进行相应的测试)
  • dbcp没有自动的去回收空闲连接的功能
  • c3p0有自动回收空闲连接功能
总结 这一小节我们主要学习了数据库连接池的另外一种技术C3P0,并且对两者的使用进行简单的对比。

    推荐阅读