c3p0与dbcp的作用与区别,及使用!
一:c3p0简介及作用:
c3p0是一个开源的JDBC连接池,它实现了数据源和JNDI绑定,支持JDBC3规范和JDBC2的标准扩展。目前使用它开源项目有Hibernate,Spring。
是一个后缀名为.xml的文件:
将其添加到工程中,导入,就能进行使用(ComboPooledDataSource)
c3p0数据源的简单使用:
要有这个包的存在才行:
import com.mchange.v2.c3p0.ComboPooledDataSource;
public class C3P0Util {
//C3P0数据源:ComboPooledDataSource
private static ComboPooledDataSource dataSource=new ComboPooledDataSource();
//这个方法参考
public static Connection getConn(){
try {
return dataSource.getConnection();
} catch (SQLException e) {
throw new RuntimeException(e);
}
}
//这个方法比较直观:
public static Connection getConn2(){
Connection conn=null;
try {
conn=dataSource.getConnection();
} catch (Exception e) {
e.printStackTrace();
}
return conn;
}
//释放连接
public static void realease(ResultSet rs,Statement stmt,Connection conn){
try {
if(null!=rs){
rs.close();
}
} catch (Exception e) {
}
try {
if(null!=stmt){
stmt.close();
}
} catch (Exception e) {
}
try {
if(null!=conn){
conn.close();
}
} catch (Exception e) {
}
}
}
c3p0调试:
import java.sql.Connection;
import org.junit.Test;
import com.beiwo.epet.util.C3P0Util;
public class TestC3P0 {
@Test
public void test1(){
Connection conn=C3P0Util.getConn();
System.out.println(conn.getClass().getName());
C3P0Util.realease(null, null, conn);
}
}
二:DBCP简介及作用:
DBCP(DataBase connection pool),数据库连接池。
是 apache 上的一个 java 连接池项目,也是 tomcat 使用的连接池组件。
单独使用dbcp需要3个包:common-dbcp.jar,common-pool.jar,common-collections.jar由于建立数据库连接是一个非常耗时耗资源的行为,
所以通过连接池预先同数据库建立一些连接,放在内存中,应用程序需要建立数据库连接时直接到连接池中申请一个就行,用完后再放回去。
DBCP是一个后缀名为 .properties 的文件,并且是自己创建的,在使用的时候,通过:ResourceBundle 对其进行获取文件(通过getBundle方法,拿到名字),然后在通过 键值对 V--K进行取值,从而进行 获取连接 getConnection() , 及其 释放连接 closeAll()。
DBCP的简单封装使用:
import java.util.ResourceBundle;
public class DBUtil {
private static String driverClass = null;
private static String url = null;
private static String user = null;
private static String pwd = null;
static {
ResourceBundle rb = ResourceBundle.getBundle("jdbc");
driverClass = rb.getString("driverClass");
url = rb.getString("url");
user = rb.getString("user");
pwd = rb.getString("pwd");
try {
Class.forName(driverClass);//获取连接加载驱动
} catch (Exception e) {
e.printStackTrace();
}
}
public static Connection getConn() throws Exception {
return DriverManager.getConnection(url, user, pwd);
}
public static void closeAll(ResultSet rs, Statement stmt, Connection conn) {
try {
if (null != rs) {
rs.close();
}
if (null != stmt) {
stmt.close();
}
if (null != conn) {
conn.close();
}
} catch (Exception e) {
e.printStackTrace();
}
}
}
c3p0与DBCP区别:
1.dbcp没有自动的去回收空闲连接的功能
2.c3p0有自动回收空闲连接功能