一:c3p0簡介及作用:
c3p0是一個開源的JDBC連接池汁胆,它實(shí)現(xiàn)了數(shù)據(jù)源和JNDI綁定,支持JDBC3規(guī)范和JDBC2的標(biāo)準(zhǔn)擴(kuò)展霜幼。目前使用它開源項目有Hibernate嫩码,Spring。
是一個后綴名為.xml的文件:
將其添加到工程中罪既,導(dǎo)入铸题,就能進(jìn)行使用(ComboPooledDataSource)
c3p0數(shù)據(jù)源的簡單使用:
要有這個包的存在才行:
import com.mchange.v2.c3p0.ComboPooledDataSource;
public class C3P0Util {
? ? ? ? ? ? ? ? ? //C3P0數(shù)據(jù)源: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調(diào)試:
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)琢感,數(shù)據(jù)庫連接池丢间。
是 apache 上的一個 java 連接池項目,也是 tomcat 使用的連接池組件烘挫。
單獨(dú)使用dbcp需要3個包:common-dbcp.jar,common-pool.jar,common-collections.jar由于建立數(shù)據(jù)庫連接是一個非常耗時耗資源的行為,
所以通過連接池預(yù)先同數(shù)據(jù)庫建立一些連接,放在內(nèi)存中饮六,應(yīng)用程序需要建立數(shù)據(jù)庫連接時直接到連接池中申請一個就行,用完后再放回去卤橄。
DBCP是一個后綴名為 ?.properties 的文件绿满,并且是自己創(chuàng)建的,在使用的時候喇颁,通過:ResourceBundle 對其進(jìn)行獲取文件(通過getBundle方法,拿到名字)嚎货,然后在通過 ?鍵值對 ?V--K進(jìn)行取值橘霎,從而進(jìn)行 ? ? ?獲取連接 ?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);//獲取連接加載驅(qū)動
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? } 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區(qū)別:
1.dbcp沒有自動的去回收空閑連接的功能
2.c3p0有自動回收空閑連接功能