jdbc基础 (五) 连接池与数据源 DBCP以及C3P0的使用

时间:2022-08-26 13:50:08

一、连接池的概念和使用

 

在实际应用开发中,特别是在WEB应用系统中,如果JSP、Servlet或EJB使用JDBC直接访问数据库中的数据,每一次数据访问请求都必须经历建立数据库连接、打开数据库、存取数据和关闭数据库连接等步骤,而连接并打开数据库是一件既消耗资源又费时的工作,如果频繁发生这种数据库操作,系统的性能必然会急剧下降,甚至会导致系统崩溃。数据库连接池技术是解决这个问题最常用的方法。

数据库连接池的主要操作如下:
(1)建立数据库连接池对象。
(2)按照事先指定的参数创建初始数量的数据库连接(即:空闲连接数)。
(3)对于一个数据库访问请求,直接从连接池中得到一个连接。如果数据库连接池对象中没有空闲的连接,且连接数没有达到最大(即:最大活跃连接数),创建一个新的数据库连接。
(4)存取数据库。
(5)关闭数据库,释放所有数据库连接(此时的关闭数据库连接,并非真正关闭,而是将其放入空闲队列中。如实际空闲连接数大于初始空闲连接数则释放连接)。
(6)释放数据库连接池对象(服务器停止、维护期间,释放数据库连接池对象,并释放所有连接)。
 
 
二、开源的连接池项目 DBCP 和 C3P0
 
1. DBCP(DataBase connection pool)数据库连接池是 apache 上的一个 java 连接池项目,也是 tomcat 使用的连接池组件。单独使用dbcp需要2个包:commons-dbcp.jar,commons-pool.jar。最新jar包为commons-dbcp2-2.1commons-pool2-2.4.1,支持java7以上
 
2. C3P0是一个开源的JDBC连接池,它实现了数据源和JNDI绑定,支持JDBC3规范和JDBC2的标准扩展。目前使用它的开源项目有Hibernate,Spring
 
dbcp没有自动回收空闲连接的功能,c3p0有自动回收空闲连接功能
 
三、DBCP 和C3P0的使用
 
1.DBCP使用
①将commons-dbcp2-2.1commons-pool2-2.4.1导入项目
②配置文件为dbcpconfig.properties,连接设置自行配置,内容如下:
 1 #连接设置
2 driverClassName=com.mysql.jdbc.Driver
3 url=jdbc:mysql://localhost:3306/day16
4 username=root
5 password=123456
6
7 #<!-- 初始化连接 -->
8 initialSize=10
9
10 #最大连接数量
11 maxActive=50
12
13 #<!-- 最大空闲连接 -->
14 maxIdle=20
15
16 #<!-- 最小空闲连接 -->
17 minIdle=5
18
19 #<!-- 超时等待时间以毫秒为单位 6000毫秒/1000等于60秒 -->
20 maxWait=60000
21
22
23 #JDBC驱动建立连接时附带的连接属性属性的格式必须为这样:[属性名=property;]
24 #注意:"user" 与 "password" 两个属性会被明确地传递,因此这里不需要包含他们。
25 connectionProperties=useUnicode=true;characterEncoding=utf8
26
27 #指定由连接池所创建的连接的自动提交(auto-commit)状态。
28 defaultAutoCommit=true
29
30 #driver default 指定由连接池所创建的连接的只读(read-only)状态。
31 #如果没有设置该值,则“setReadOnly”方法将不被调用。(某些驱动并不支持只读模式,如:Informix)
32 defaultReadOnly=
33
34 #driver default 指定由连接池所创建的连接的事务级别(TransactionIsolation)。
35 #可用值为下列之一:(详情可见javadoc。)NONE,READ_UNCOMMITTED, READ_COMMITTED, REPEATABLE_READ, SERIALIZABLE
36 defaultTransactionIsolation=REPEATABLE_READ

 

③写一个工具类,功能类似于jdbc基础 (二) 通过properties配置文件连接数据库中的JdbcUtils,不过此处原理为从连接池中获取一个数据源,通过数据源来获取Connection对象。代码如下:

package com.cream.ice.jdbc;

import java.io.InputStream;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;

import javax.sql.DataSource;

import org.apache.commons.dbcp2.BasicDataSourceFactory;

/**
* DBCP工具类
* DBCP使用的默认适配器方式,当Connection对象调用close()方法时,将Connection对象放回连接池中,实际上并不关闭连接
* 通过dbcpconfig.properties文件配置数据库、连接池参数
*
*
@author ice
*
*/
public class DBCPUtils {

public static DataSource dataSource;

static {
try {
InputStream in
= DBCPUtils.class.getClassLoader()
.getResourceAsStream(
"dbcpconfig.properties");
Properties properties
= new Properties();
properties.load(in);

//返回数据源对象
dataSource = BasicDataSourceFactory.createDataSource(properties);
}
catch (Exception e) {
e.printStackTrace();
}
}

/**
* 获取数据源
*
@return 数据源
*/
public static DataSource getDataSource(){
return dataSource;
}

/**
* 从连接池中获取连接
*
@return
*/
public static Connection getConnection(){
try {
return dataSource.getConnection();
}
catch (SQLException e) {
throw new RuntimeException(e);
}
}

/**
* 释放资源
*/
public static void releaseResources(ResultSet resultSet,
Statement statement, Connection connection) {

try {
if (resultSet != null)
resultSet.close();
}
catch (SQLException e) {
e.printStackTrace();
}
finally {
resultSet
= null;
try {
if (statement != null)
statement.close();
}
catch (SQLException e) {
e.printStackTrace();
}
finally {
statement
= null;
try {
if (connection != null)
connection.close();
}
catch (SQLException e) {
e.printStackTrace();
}
finally {
connection
= null;
}
}
}
}
}

 

2.C3P0使用

①导入c3p0-0.9.5.1.jarmchange-commons-java-0.2.10.jar

②设置数据库方法有三种:

1.setters一个个地设置各个配置项 
2.类路径下提供一个c3p0.properties文件 
3.类路径下提供一个c3p0-config.xml文件 

这里采用第三种,配置文件为c3p0-config.xml,内容如下:

 1 <?xml version="1.0" encoding="UTF-8"?>
2
3 <c3p0-config>
4 <default-config>
5 <property name="driverClass">com.mysql.jdbc.Driver</property>
6 <property name="jdbcUrl">jdbc:mysql://localhost:3306/jdbc</property>
7 <property name="user">root</property>
8 <property name="password">123456</property>
9
10 <property name="checkoutTimeout">30000</property>
11 <property name="initialPoolSize">10</property>
12 <property name="maxIdleTime">30</property>
13 <property name="maxPoolSize">100</property>
14 <property name="minPoolSize">10</property>
15 <property name="maxStatements">200</property>
16
17 <user-overrides user="test-user">
18 <property name="maxPoolSize">10</property>
19 <property name="minPoolSize">1</property>
20 <property name="maxStatements">0</property>
21 </user-overrides>
22
23 </default-config>
24
25 <!-- This app is massive! -->
26 <named-config name="intergalactoApp">
27 <property name="acquireIncrement">50</property>
28 <property name="initialPoolSize">100</property>
29 <property name="minPoolSize">50</property>
30 <property name="maxPoolSize">1000</property>
31
32 <!-- intergalactoApp adopts a different approach to configuring statement caching -->
33 <property name="maxStatements">0</property>
34 <property name="maxStatementsPerConnection">5</property>
35
36 <!-- he's important, but there's only one of him -->
37 <user-overrides user="master-of-the-universe">
38 <property name="acquireIncrement">1</property>
39 <property name="initialPoolSize">1</property>
40 <property name="minPoolSize">1</property>
41 <property name="maxPoolSize">5</property>
42 <property name="maxStatementsPerConnection">50</property>
43 </user-overrides>
44 </named-config>
45 </c3p0-config>

 

③编写工具类,代码如下:

 1 package com.cream.ice.jdbc;
2
3 import java.sql.Connection;
4 import java.sql.ResultSet;
5 import java.sql.SQLException;
6 import java.sql.Statement;
7
8 import javax.sql.DataSource;
9
10 import com.mchange.v2.c3p0.ComboPooledDataSource;
11
12 /**
13 * C3P0工具类
14 * DBCP使用动态代理,当Connection对象调用close()方法时,将Connection对象放回连接池中,实际上并不关闭连接
15 * 通过c3p0-config.xml文件配置数据库、连接池参数
16 * @author ice
17 *
18 */
19 public class C3P0Utils {
20 /**
21 * 数据源
22 */
23 public static ComboPooledDataSource cpDataDataSource = new ComboPooledDataSource();
24
25 /**
26 * 获取数据源
27 * @return 数据源
28 */
29 public static DataSource getDataSource() {
30 return cpDataDataSource;
31 }
32
33 /**
34 * 从连接池中获取连接
35 * @return
36 */
37 public static Connection getConnection(){
38 try {
39 return cpDataDataSource.getConnection();
40 } catch (SQLException e) {
41 throw new RuntimeException(e);
42 }
43 }
44
45 /**
46 * 释放资源
47 */
48 public static void releaseResources(ResultSet resultSet,
49 Statement statement, Connection connection) {
50
51 try {
52 if (resultSet != null)
53 resultSet.close();
54 } catch (SQLException e) {
55 e.printStackTrace();
56 } finally {
57 resultSet = null;
58 try {
59 if (statement != null)
60 statement.close();
61 } catch (SQLException e) {
62 e.printStackTrace();
63 } finally {
64 statement = null;
65 try {
66 if (connection != null)
67 connection.close();
68 } catch (SQLException e) {
69 e.printStackTrace();
70 } finally {
71 connection = null;
72 }
73 }
74 }
75 }
76 }

 

DBCPUtilsC3P0UtilsJdbcUtils的用法别无二致,区别只是释放资源时,Connection对象调用close()方法时,只是将Connection对象放回连接池中,实际上并不关闭连接。