c3p0 数据源配置及使用

1、下载c3p0-0.9.1.2.jar

下载地址:http://download.csdn.net/detail/chunxiaqiudong5/9661922

 

2、添加配置文件c3p0-config.xml

 

3、配置文件内容如下:

 

 
  1. 10

  2. 30

  3. 100

  4. 10

  5. 200

  6.  
  7. com.mysql.jdbc.Driver

  8. jdbc:mysql://localhost:3306/jdbc?useUnicode=true&characterEncoding=UTF8

  9. root

  10. 10

  11. 30

  12. 100

  13. 10

  14. 200

  15. false

  16. Test

  17. false

  18. 60

  19.  
  20.  
  21. oracle.jdbc.driver.OracleDriver

  22. jdbc:oracle:thin:@localhost:1521:orcl

  23. scott

  24. liang

  25. 10

  26. 30

  27. 100

  28. 10

  29. 200


 

4、连接池连接类

 

 
  1. package com.xxx.utils;

  2.  
  3. import java.sql.Connection;

  4. import java.sql.SQLException;

  5.  
  6. import javax.sql.DataSource;

  7.  
  8. import com.mchange.v2.c3p0.ComboPooledDataSource;

  9.  
  10. public class JDBCUtil {

  11.  
  12. private static DataSource dataSource=null;

  13. static{

  14. dataSource=new ComboPooledDataSource("mysql");

  15. }

  16.  
  17. /**

  18. * 获取数据库连接

  19. * @return

  20. */

  21. public static Connection getConnection(){

  22. Connection conn=null;

  23. try {

  24. conn=dataSource.getConnection();

  25. } catch (SQLException e) {

  26. e.printStackTrace();

  27. }

  28. return conn;

  29. }

  30.  
  31.  
  32. /**

  33. * 关闭数据库连接

  34. * @param conn

  35. */

  36. public static void closeConn(Connection conn){

  37. try {

  38. if(conn!=null && conn.isClosed()){

  39. conn.close();

  40. }

  41. } catch (SQLException e) {

  42. e.printStackTrace();

  43. }

  44. }

  45. }


 

5、测试

 

 
  1. package com.xxx.test;

  2.  
  3. import java.sql.Connection;

  4. import java.sql.PreparedStatement;

  5. import java.sql.ResultSet;

  6. import java.sql.SQLException;

  7.  
  8. import org.junit.Test;

  9.  
  10. import com.xxx.utils.JDBCUtil;

  11.  
  12. public class TestJdbc {

  13.  
  14. @Test

  15. public void test() {

  16. Connection conn=JDBCUtil.getConnection();

  17. System.out.println(conn);

  18. try {

  19. PreparedStatement stmt=conn.prepareStatement("select * from tb_user");

  20. ResultSet re=stmt.executeQuery();

  21. while(re.next()){

  22. String name=re.getString(2);

  23. System.out.println(name);

  24.  
  25. }

  26.  
  27.  
  28. } catch (SQLException e) {

  29. // TODO Auto-generated catch block

  30. e.printStackTrace();

  31. }

  32. }

  33.  
  34.  
  35.  
  36. }

 

 

 

。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。

 

c3p0的配置方式分为三种,分别是
1.setters一个个地设置各个配置项
2.类路径下提供一个c3p0.properties文件
3.类路径下提供一个c3p0-config.xml文件

1.setters一个个地设置各个配置项
这种方式最繁琐,形式一般是这样:

 
  1. 01 Properties props = new Properties();

  2. 02 InputStream in = ConnectionManager.class.getResourceAsStream("/c3p0.properties");

  3. 03 props.load(in);

  4. 04 in.close();

  5. 05

  6. 06 ComboPooledDataSource cpds = new ComboPooledDataSource();

  7. 07 cpds.setDriverClass(props.getProperty("driverClass"));

  8. 08 cpds.setJdbcUrl(props.getProperty("jdbcUrl"));

  9. 09 cpds.setUser(props.getProperty("user"));

  10. 10 cpds.setPassword(props.getProperty("password"));

因为繁琐,所以很不适合采用,于是文档提供了另外另种方式。

2. 类路径下提供一个c3p0.properties文件 
文件的命名必须是c3p0.properties,里面配置项的格式为:

 
  1. 1 c3p0.driverClass=com.mysql.jdbc.Driver

  2. 2 c3p0.jdbcUrl=jdbc:mysql://localhost:3306/jdbc

  3. 3 c3p0.user=root

  4. 4 c3p0.password=java


上面只提供了最基本的配置项,其他配置项参照 文档配置,记得是c3p0.后面加属性名就是了,最后初始化数据源的方式就是这样简单: 

 
  1. 1 private static ComboPooledDataSource ds = new ComboPooledDataSource();

  2. 2      

  3. 3 public static Connection getConnection() {

  4. 4     try {

  5. 5         return ds.getConnection();

  6. 6     } catch (SQLException e) {

  7. 7         throw new RuntimeException(e);

  8. 8     }

  9. 9 }

  10.  

 

3.类路径下提供一个c3p0-config.xml文件  
这种方式使用方式与第二种差不多,但是有更多的优点 
(1).更直观明显,很类似hibernate和spring的配置 
(2).可以为多个数据源服务,提供default-config和named-config两种配置方式 
下面是一个配置模板: 

 
  1. 01

  2. 02     

  3. 03     root

  4. 04     java

  5. 05     com.mysql.jdbc.Driver

  6. 06     jdbc:mysql://localhost:3306/jdbc

  7. 07      

  8. 08     10

  9. 09     30

  10. 10     100

  11. 11     10

  12. 12   

  13. 13    

  14. 14   

  15. 15     root

  16. 16     java

  17. 17     com.mysql.jdbc.Driver

  18. 18     jdbc:mysql://localhost:3306/jdbc

  19. 19      

  20. 20     10

  21. 21     30

  22. 22     100

  23. 23     10

  24. 24   

  25. 25

 

如果要使用default-config则初始化数据源的方式与第二种一样,如果要使用named-config里面配置初始化数据源,则只要使用一个带参数的ComboPooledDataSource构造器就可以了 

private static ComboPooledDataSource ds = new ComboPooledDataSource("myApp");

 

下面整理一下从文档和网上学习到的c3p0配置的理解 (user,password,driverClass,jdbcUrl没有说的必要) 

1.基本配置项

 
  1. 01 acquireIncrement

  2. 02 default : 3

  3. 03 连接池在无空闲连接可用时一次性创建的新数据库连接数

  4. 04

  5. 05 initialPoolSize

  6. 06 default : 3

  7. 07 连接池初始化时创建的连接数

  8. 08

  9. 09 maxPoolSize

  10. 10 default : 15

  11. 11 连接池中拥有的最大连接数,如果获得新连接时会使连接总数超过这个值则不会再获取新连接,而是等待

  12. 12 其他连接释放,所以这个值有可能会设计地很大

  13. 13

  14. 14 maxIdleTime

  15. 15 default : 0 单位 s

  16. 16 连接的最大空闲时间,如果超过这个时间,某个数据库连接还没有被使用,则会断开掉这个连接

  17. 17 如果为0,则永远不会断开连接

  18. 18

  19. 19 minPoolSize

  20. 20 default : 3

  21. 21 连接池保持的最小连接数,后面的maxIdleTimeExcessConnections跟这个配合使用来减轻连接池的负载

2.管理连接池的大小和连接的生存时间

 
  1. 01 maxConnectionAge

  2. 02 default : 0 单位 s

  3. 03 配置连接的生存时间,超过这个时间的连接将由连接池自动断开丢弃掉。当然正在使用的连接不会马上断开,而是等待

  4. 04 它close再断开。配置为0的时候则不会对连接的生存时间进行限制。

  5. 05

  6. 06 maxIdleTimeExcessConnections

  7. 07 default : 0 单位 s

  8. 08 这个配置主要是为了减轻连接池的负载,比如连接池中连接数因为某次数据访问高峰导致创建了很多数据连接

  9. 09 但是后面的时间段需要的数据库连接数很少,则此时连接池完全没有必要维护那么多的连接,所以有必要将

  10. 10 断开丢弃掉一些连接来减轻负载,必须小于maxIdleTime。配置不为0,则会将连接池中的连接数量保持到minPoolSize。

  11. 11 为0则不处理。


maxIdleTime也可以归属到这一类,前面已经写出来了。

3.配置连接测试:因为连接池中的数据库连接很有可能是维持数小时的连接,很有可能因为数据库服务器的问题,网络问题等导致实际连接已经无效,但是连接池里面的连接还是有效的,如果此时获得连接肯定会发生异常,所以有必要通过测试连接来确认连接的有效性。
下面的前三项用来配置如何对连接进行测试,后三项配置对连接进行测试的时机。

 
  1. 01 automaticTestTable

  2. 02 default : null

  3. 03 用来配置测试连接的一种方式。配置一个表名,连接池根据这个表名创建一个空表,

  4. 04 并且用自己的测试sql语句在这个空表上测试数据库连接

  5. 05 这个表只能由c3p0来使用,用户不能操作,同时用户配置的preferredTestQuery 将会被忽略。

  6. 06

  7. 07 preferredTestQuery

  8. 08 default : null

  9. 09 用来配置测试连接的另一种方式。与上面的automaticTestTable二者只能选一。

  10. 10 如果要用它测试连接,千万不要设为null,否则测试过程会很耗时,同时要保证sql语句中的表在数据库中一定存在。

  11. 11

  12. 12 connectionTesterClassName

  13. 13 default :  com.mchange.v2.c3p0.impl.DefaultConnectionTester

  14. 14 连接池用来支持automaticTestTable和preferredTestQuery测试的类,必须是全类名,就像默认的那样,

  15. 15 可以通过实现UnifiedConnectionTester接口或者继承AbstractConnectionTester来定制自己的测试方法

  16. 16

  17. 17 idleConnectionTestPeriod

  18. 18 default : 0

  19. 19 用来配置测试空闲连接的间隔时间。测试方式还是上面的两种之一,可以用来解决MySQL8小时断开连接的问题。因为它

  20. 20 保证连接池会每隔一定时间对空闲连接进行一次测试,从而保证有效的空闲连接能每隔一定时间访问一次数据库,将于MySQL

  21. 21 8小时无会话的状态打破。为0则不测试。

  22. 22

  23. 23 testConnectionOnCheckin

  24. 24 default : false

  25. 25 如果为true,则在close的时候测试连接的有效性。为了提高测试性能,可以与idleConnectionTestPeriod搭配使用,

  26. 26 配置preferredTestQuery或automaticTestTable也可以加快测试速度。

  27. 27

  28. 28 testConnectionOnCheckout

  29. 29 default : false

  30. 30 性能消耗大。如果为true,在每次getConnection的时候都会测试,为了提高性能,

  31. 31 可以与idleConnectionTestPeriod搭配使用,

  32. 32 配置preferredTestQuery或automaticTestTable也可以加快测试速度。


4.配置PreparedStatement缓存 

 
  1. 01 maxStatements

  2. 02 default : 0

  3. 03 连接池为数据源缓存的PreparedStatement的总数。由于PreparedStatement属于单个Connection,所以

  4. 04 这个数量应该根据应用中平均连接数乘以每个连接的平均PreparedStatement来计算。为0的时候不缓存,

  5. 05 同时maxStatementsPerConnection的配置无效。

  6. 06

  7. 07 maxStatementsPerConnection

  8. 08 default : 0

  9. 09 连接池为数据源单个Connection缓存的PreparedStatement数,这个配置比maxStatements更有意义,因为

  10. 10 它缓存的服务对象是单个数据连接,如果设置的好,肯定是可以提高性能的。为0的时候不缓存。

5.重连相关配置 

 
  1. 01 acquireRetryAttempts

  2. 02 default : 30

  3. 03 连接池在获得新连接失败时重试的次数,如果小于等于0则无限重试直至连接获得成功

  4. 04

  5. 05 acquireRetryDelay

  6. 06 default : 1000 单位ms

  7. 07 连接池在获得新连接时的间隔时间

  8. 08

  9. 09 breakAfterAcquireFailure

  10. 10 default : false

  11. 11 如果为true,则当连接获取失败时自动关闭数据源,除非重新启动应用程序。所以一般不用。


个人觉得上述三个没有更改的必要,但可以将acquireRetryDelay配置地更短一些

 

6.定制管理Connection的生命周期

 
  1. 1 connectionCustomizerClassName

  2. 2 default : null

  3. 3 用来定制Connection的管理,比如在Connection acquire 的时候设定Connection的隔离级别,或者在

  4. 4 Connection丢弃的时候进行资源关闭,就可以通过继承一个AbstractConnectionCustomizer来实现相关

  5. 5 方法,配置的时候使用全类名。有点类似监听器的作用。


例如: 

 
  1. 01 import java.sql.Connection;

  2. 02 import com.mchange.v2.c3p0.AbstractConnectionCustomizer;

  3. 03

  4. 04 public class ConnectionCustomizer extends AbstractConnectionCustomizer{

  5. 05

  6. 06     @Override

  7. 07     public void onAcquire(Connection c, String parentDataSourceIdentityToken)

  8. 08             throws Exception {

  9. 09         System.out.println("acquire : " + c);

  10. 10     }

  11. 11     @Override

  12. 12     public void onCheckIn(Connection c, String parentDataSourceIdentityToken)

  13. 13             throws Exception {

  14. 14         System.out.println("checkin : " + c);

  15. 15     }

  16. 16     @Override

  17. 17     public void onCheckOut(Connection c, String parentDataSourceIdentityToken)

  18. 18             throws Exception {

  19. 19         System.out.println("checkout : " + c);

  20. 20     }

  21. 21     @Override

  22. 22     public void onDestroy(Connection c, String parentDataSourceIdentityToken)

  23. 23             throws Exception {

  24. 24         System.out.println("destroy : " + c);

  25. 25     }

  26. 26 }

  27.  

 

liuyun.zhuge.db.ConnectionCustomizer

 

 

7.配置未提交的事务处理 

 

 
  1. 1 autoCommitOnClose

  2. 2 default : false

  3. 3 连接池在回收数据库连接时是否自动提交事务

  4. 4 如果为false,则会回滚未提交的事务

  5. 5 如果为true,则会自动提交事务

  6. 6

  7. 7 forceIgnoreUnresolvedTransactions

  8. 8 default : false

  9. 9 这个配置强烈不建议为true。

8.配置debug和回收Connection一般来说事务当然由自己关闭了,为什么要让连接池来处理这种不细心问题呢?

 
  1. 01 unreturnedConnectionTimeout

  2. 02 default : 0 单位 s

  3. 03 为0的时候要求所有的Connection在应用程序中必须关闭。如果不为0,则强制在设定的时间到达后回收

  4. 04 Connection,所以必须小心设置,保证在回收之前所有数据库操作都能够完成。这种限制减少Connection未关闭

  5. 05 情况的不是很适用。为0不对connection进行回收,即使它并没有关闭。

  6. 06

  7. 07 debugUnreturnedConnectionStackTraces

  8. 08 default : false

  9. 09 如果为true并且unreturnedConnectionTimeout设为大于0的值,当所有被getConnection出去的连接

  10. 10 unreturnedConnectionTimeout时间到的时候,就会打印出堆栈信息。只能在debug模式下适用,因为

  11. 11 打印堆栈信息会减慢getConnection的速度

同第七项一样的,连接用完当然得close了,不要通过unreturnedConnectionTimeout让连接池来回收未关闭的连接。

9.其他配置项:因为有些配置项几乎没有自己配置的必要,使用默认值就好,所以没有再写出来

 
  1. 1 checkoutTimeout

  2. 2 default : 0

  3. 3 配置当连接池所有连接用完时应用程序getConnection的等待时间。为0则无限等待直至有其他连接释放

  4. 4 或者创建新的连接,不为0则当时间到的时候如果仍没有获得连接,则会抛出SQLException

三、示例:

示例采用第二种方式:

1.c3p0.properties:

 

 
  1. #驱动  

  2. c3p0.driverClass=com.mysql.jdbc.Driver  

  3. #地址  

  4. c3p0.jdbcUrl=jdbc:mysql://localhost:3306/jdbc  

  5. #用户名  

  6. c3p0.user=root  

  7. #密码  

  8. c3p0.password=lovejava  

  9. #-------------------------------  

  10. #连接池初始化时创建的连接数  

  11. c3p0.initialPoolSize=3  

  12. #连接池保持的最小连接数  

  13. c3p0.minPoolSize=3  

  14. #连接池在无空闲连接可用时一次性创建的新数据库连接数,default:3  

  15. c3p0.acquireIncrement=3  

  16. #连接池中拥有的最大连接数,如果获得新连接时会使连接总数超过这个值则不会再获取新连接,而是等待其他连接释放,所以这个值有可能会设计地很大,default : 15  

  17. c3p0.maxPoolSize=15  

  18. #连接的最大空闲时间,如果超过这个时间,某个数据库连接还没有被使用,则会断开掉这个连接,单位秒  

  19. c3p0.maxIdleTime=100  

  20. #连接池在获得新连接失败时重试的次数,如果小于等于0则无限重试直至连接获得成功  

  21. c3p0.acquireRetryAttempts=30  

  22. #连接池在获得新连接时的间隔时间  

  23. c3p0.acquireRetryDelay=1000

 

 

 2.ConnectionPool

 

 
  1. package com.study.pool;  

  2.   

  3. import java.sql.Connection;  

  4. import java.sql.SQLException;  

  5.   

  6. import javax.sql.DataSource;  

  7.   

  8. import com.mchange.v2.c3p0.ComboPooledDataSource;  

  9.   

  10. public class ConnectionPool {  

  11.     private DataSource ds;  

  12.     private static ConnectionPool pool;  

  13.     private ConnectionPool(){  

  14.         ds = new ComboPooledDataSource();  

  15.     }  

  16.     public static final ConnectionPool getInstance(){  

  17.         if(pool==null){  

  18.             try{  

  19.                 pool = new ConnectionPool();  

  20.             }catch (Exception e) {  

  21.                 e.printStackTrace();  

  22.             }  

  23.         }  

  24.         return pool;  

  25.     }  

  26.     public synchronized final Connection getConnection() {    

  27.         try {  

  28.             return ds.getConnection();  

  29.         } catch (SQLException e) {       

  30.             e.printStackTrace();  

  31.         }  

  32.         return null;  

  33.     }  

  34.       

  35. }

 

 

 3.PoolThread

 

 
  1. package com.study.pool;  

  2.   

  3. import java.sql.Connection;  

  4. import java.sql.PreparedStatement;  

  5. import java.sql.ResultSet;  

  6. import java.sql.SQLException;  

  7.   

  8. public class PoolThread extends Thread {  

  9.     @Override  

  10.     public void run(){  

  11.         ConnectionPool pool = ConnectionPool.getInstance();  

  12.         Connection con = null;  

  13.         PreparedStatement stmt= null;  

  14.         ResultSet rs = null;  

  15.         try{  

  16.             con = pool.getConnection();  

  17.             stmt = con.prepareStatement("select sysdate as nowtime from dual");  

  18.             rs = stmt.executeQuery();  

  19.             while(rs.next()){  

  20.                 System.out.println(Thread.currentThread().getId()+"---------------开始"+rs.getString("nowtime"));  

  21.             }  

  22.         } catch (Exception e) {  

  23.             e.printStackTrace();  

  24.         }finally{  

  25.             try {  

  26.                 rs.close();  

  27.                 stmt.close();  

  28.                 con.close();  

  29.             } catch (SQLException e) {  

  30.                 e.printStackTrace();  

  31.             }  

  32.         }  

  33.         System.out.println(Thread.currentThread().getId()+"--------结束");  

  34.     }  

  35. }

 

 4.PoolMain

 

 
  1. package com.study.pool;  

  2.   

  3. public class PoolMain {  

  4.   

  5.     /** 

  6.      * 数据源缓冲池 实例练习 

  7.      */  

  8.     public static void main(String[] args) {  

  9.         System.out.println("缓冲池模拟开始");  

  10.         PoolThread[] threads = new PoolThread[50];  

  11.         for(int i=0;i

  12.             threads[i] = new PoolThread();  

  13.         }  

  14.         for(int i=0;i

  15.             threads[i].start();  

  16.         }  

  17.     }  

  18.   

  19. }

你可能感兴趣的:(Database)