Java數據庫鏈接池實現原理

 

 
通常來講,Java應用程序訪問數據庫的過程是:
  ①裝載數據庫驅動程序;
  ②經過jdbc創建數據庫鏈接;
  ③訪問數據庫,執行sql語句;

  ④斷開數據庫鏈接。java

 

[java] view plain copy
 
print?
  1. public class DBConnection {   
  2.   
  3.     private Connection con;         //定義數據庫鏈接類對象  
  4.     private PreparedStatement pstm;   
  5.     private String user="root";     //鏈接數據庫用戶名  
  6.     private String password="123456";       //鏈接數據庫密碼  
  7.     private String driverName="com.mysql.jdbc.Driver";  //數據庫驅動  
  8.     private String url="jdbc:mysql://localhost:3306/qingqingtuan";        
  9. //鏈接數據庫的URL,後面的是爲了防止插入數據 庫出現亂碼,?useUnicode=true&characterEncoding=UTF-8  
  10. //構造函數  
  11. public DBConnection(){  
  12.       
  13. }  
  14. /**建立數據庫鏈接*/  
  15. public Connection getConnection(){  
  16.     try{  
  17.         Class.forName("com.mysql.jdbc.Driver");  
  18.     }catch(ClassNotFoundException e){  
  19.         System.out.println("加載數據庫驅動失敗!");  
  20.         e.printStackTrace();  
  21.     }  
  22.     try {  
  23.         con=DriverManager.getConnection(url,user,password);     //獲取數據庫鏈接  
  24.     } catch (SQLException e) {  
  25.         System.out.println("建立數據庫鏈接失敗!");  
  26.         con=null;  
  27.         e.printStackTrace();  
  28.     }  
  29.     return con;                 //返回數據庫鏈接對象  
  30. }  
  31.  List<Shop> mShopList=new ArrayList<Shop>();  
  32.          mConnection=new DBConnection().getConnection();  
  33.          if(mConnection!=null){           
  34.             try {  
  35.                 String sql="select * from shop";  
  36.                 PreparedStatement pstm=mConnection.prepareStatement(sql);  
  37.                 ResultSet rs=pstm.executeQuery();  
  38.                 while(rs.next()){  
  39.                                 ......//封裝PoPj的操做  
  40.                                 }  
  41.                                 rs.close();  
  42.                 pstm.close();        
  43.             } catch (SQLException e) {                
  44.                 e.printStackTrace();  
  45.             }finally{  
  46.                 try {  
  47.                     if(mConnection!=null){  
  48.                         mConnection.close();  
  49.                     }                     
  50.                 } catch (SQLException e) {  
  51.                     e.printStackTrace();  
  52.                 }  
  53.             }   
 
 

 

                     

 

程序開發過程當中,存在不少問題:mysql

首先,每一次web請求都要創建一次數據庫鏈接。創建鏈接是一個費時的活動,每次都得花費0.05s~1s的時間,並且系統還要分配內存資源。這個時間對於一次或幾回數據庫操做,或許感受不出系統有多大的開銷。web

但是對於如今的web應用,尤爲是大型電子商務網站,同時有幾百人甚至幾千人在線是很正常的事。在這種狀況下,頻繁的進行數據庫鏈接操做勢必佔用不少的系統資源,網站的響應速度一定降低,嚴重的甚至會形成服務器的崩潰。不是危言聳聽,這就是制約某些電子商務網站發展的技術瓶頸問題。其次,對於每一次數據庫鏈接,使用完後都得斷開。不然,若是程序出現異常而未能關閉,將會致使數據庫系統中的內存泄漏,最終將不得不重啓數據庫sql

     經過上面的分析,咱們能夠看出來,「數據庫鏈接」是一種稀缺的資源,爲了保障網站的正常使用,應該對其進行妥善管理。實現getConnection()從鏈接庫中獲取一個可用的鏈接
③ returnConnection(conn) 提供將鏈接放回鏈接池中方法
數據庫

 

ConnectionPool.java服務器

 

[java] view plain copy
 
print?
  1. //////////////////////////////// 數據庫鏈接池類 ConnectionPool.java ////////////////////////////////////////  
  2.   
  3. /* 
  4.  這個例子是根據POSTGRESQL數據庫寫的, 
  5.  請用的時候根據實際的數據庫調整。 
  6.  調用方法以下: 
  7.  ① ConnectionPool connPool  
  8.  = new ConnectionPool("com.microsoft.jdbc.sqlserver.SQLServerDriver" 
  9.  ,"jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=MyDataForTest" 
  10.  ,"Username" 
  11.  ,"Password"); 
  12.  ② connPool .createPool(); 
  13.  Connection conn = connPool .getConnection(); 
  14.  connPool.returnConnection(conn);  
  15.  connPool.refreshConnections(); 
  16.  connPool.closeConnectionPool(); 
  17.  */  
  18. import java.sql.Connection;  
  19. import java.sql.DatabaseMetaData;  
  20. import java.sql.Driver;  
  21. import java.sql.DriverManager;  
  22. import java.sql.SQLException;  
  23. import java.sql.Statement;  
  24. import java.util.Enumeration;  
  25. import java.util.Vector;  
  26.   
  27. public class ConnectionPool {  
  28.     private String jdbcDriver = ""; // 數據庫驅動  
  29.     private String dbUrl = ""; // 數據 URL  
  30.     private String dbUsername = ""; // 數據庫用戶名  
  31.     private String dbPassword = ""; // 數據庫用戶密碼  
  32.     private String testTable = ""; // 測試鏈接是否可用的測試表名,默認沒有測試表  
  33.       
  34.     private int initialConnections = 10; // 鏈接池的初始大小  
  35.     private int incrementalConnections = 5;// 鏈接池自動增長的大小  
  36.     private int maxConnections = 50; // 鏈接池最大的大小  
  37.     private Vector connections = null; // 存放鏈接池中數據庫鏈接的向量 , 初始時爲 null  
  38.     // 它中存放的對象爲 PooledConnection 型  
  39.   
  40.     /** 
  41.      * 構造函數 
  42.      *  
  43.      * @param jdbcDriver 
  44.      *            String JDBC 驅動類串 
  45.      * @param dbUrl 
  46.      *            String 數據庫 URL 
  47.      * @param dbUsername 
  48.      *            String 鏈接數據庫用戶名 
  49.      * @param dbPassword 
  50.      *            String 鏈接數據庫用戶的密碼 
  51.      *  
  52.      */  
  53.     public ConnectionPool(String jdbcDriver, String dbUrl, String dbUsername,  
  54.             String dbPassword) {  
  55.         this.jdbcDriver = jdbcDriver;  
  56.         this.dbUrl = dbUrl;  
  57.         this.dbUsername = dbUsername;  
  58.         this.dbPassword = dbPassword;  
  59.     }  
  60.   
  61.     /** 
  62.      * 返回鏈接池的初始大小 
  63.      *  
  64.      * @return 初始鏈接池中可得到的鏈接數量 
  65.      */  
  66.     public int getInitialConnections() {  
  67.         return this.initialConnections;  
  68.     }  
  69.     /** 
  70.      * 設置鏈接池的初始大小 
  71.      *  
  72.      * @param 用於設置初始鏈接池中鏈接的數量 
  73.      */  
  74.     public void setInitialConnections(int initialConnections) {  
  75.         this.initialConnections = initialConnections;  
  76.     }  
  77.     /** 
  78.      * 返回鏈接池自動增長的大小 、 
  79.      *  
  80.      * @return 鏈接池自動增長的大小 
  81.      */  
  82.     public int getIncrementalConnections() {  
  83.         return this.incrementalConnections;  
  84.     }  
  85.     /** 
  86.      * 設置鏈接池自動增長的大小 
  87.      *  
  88.      * @param 鏈接池自動增長的大小 
  89.      */  
  90.   
  91.     public void setIncrementalConnections(int incrementalConnections) {  
  92.         this.incrementalConnections = incrementalConnections;  
  93.     }  
  94.     /** 
  95.      * 返回鏈接池中最大的可用鏈接數量 
  96.      *  
  97.      * @return 鏈接池中最大的可用鏈接數量 
  98.      */  
  99.     public int getMaxConnections() {  
  100.         return this.maxConnections;  
  101.     }  
  102.     /** 
  103.      * 設置鏈接池中最大可用的鏈接數量 
  104.      *  
  105.      * @param 設置鏈接池中最大可用的鏈接數量值 
  106.      */  
  107.     public void setMaxConnections(int maxConnections) {  
  108.         this.maxConnections = maxConnections;  
  109.     }  
  110.   
  111.     /** 
  112.      * 獲取測試數據庫表的名字 
  113.      *  
  114.      * @return 測試數據庫表的名字 
  115.      */  
  116.   
  117.     public String getTestTable() {  
  118.         return this.testTable;  
  119.     }  
  120.   
  121.     /** 
  122.      * 設置測試表的名字 
  123.      *  
  124.      * @param testTable 
  125.      *            String 測試表的名字 
  126.      */  
  127.   
  128.     public void setTestTable(String testTable) {  
  129.         this.testTable = testTable;  
  130.     }  
  131.   
  132.     /** 
  133.      *  
  134.      * 建立一個數據庫鏈接池,鏈接池中的可用鏈接的數量採用類成員 initialConnections 中設置的值 
  135.      */  
  136.   
  137.     public synchronized void createPool() throws Exception {  
  138.         // 確保鏈接池沒有建立  
  139.         // 若是鏈接池己經建立了,保存鏈接的向量 connections 不會爲空  
  140.         if (connections != null) {  
  141.             return; // 若是己經建立,則返回  
  142.         }  
  143.         // 實例化 JDBC Driver 中指定的驅動類實例  
  144.         Driver driver = (Driver) (Class.forName(this.jdbcDriver).newInstance());  
  145.         DriverManager.registerDriver(driver); // 註冊 JDBC 驅動程序  
  146.         // 建立保存鏈接的向量 , 初始時有 0 個元素  
  147.         connections = new Vector();  
  148.         // 根據 initialConnections 中設置的值,建立鏈接。  
  149.         createConnections(this.initialConnections);  
  150.         // System.out.println(" 數據庫鏈接池建立成功! ");  
  151.     }  
  152.   
  153.     /** 
  154.      * 建立由 numConnections 指定數目的數據庫鏈接 , 並把這些鏈接 放入 connections 向量中 
  155.      *  
  156.      * @param numConnections 
  157.      *            要建立的數據庫鏈接的數目 
  158.      */  
  159.   
  160.     private void createConnections(int numConnections) throws SQLException {  
  161.         // 循環建立指定數目的數據庫鏈接  
  162.         for (int x = 0; x < numConnections; x++) {  
  163.             // 是否鏈接池中的數據庫鏈接的數量己經達到最大?最大值由類成員 maxConnections  
  164.             // 指出,若是 maxConnections 爲 0 或負數,表示鏈接數量沒有限制。  
  165.             // 若是鏈接數己經達到最大,即退出。  
  166.             if (this.maxConnections > 0  
  167.                     && this.connections.size() >= this.maxConnections) {  
  168.                 break;  
  169.             }  
  170.             // add a new PooledConnection object to connections vector  
  171.             // 增長一個鏈接到鏈接池中(向量 connections 中)  
  172.             try {  
  173.                 connections.addElement(new PooledConnection(newConnection()));  
  174.             } catch (SQLException e) {  
  175.                 System.out.println(" 建立數據庫鏈接失敗! " + e.getMessage());  
  176.                 throw new SQLException();  
  177.             }  
  178.             // System.out.println(" 數據庫鏈接己建立 ......");  
  179.         }  
  180.     }  
  181.     /** 
  182.      * 建立一個新的數據庫鏈接並返回它 
  183.      *  
  184.      * @return 返回一個新建立的數據庫鏈接 
  185.      */  
  186.     private Connection newConnection() throws SQLException {  
  187.         // 建立一個數據庫鏈接  
  188.         Connection conn = DriverManager.getConnection(dbUrl, dbUsername,  
  189.                 dbPassword);  
  190.         // 若是這是第一次建立數據庫鏈接,即檢查數據庫,得到此數據庫容許支持的  
  191.         // 最大客戶鏈接數目  
  192.         // connections.size()==0 表示目前沒有鏈接己被建立  
  193.         if (connections.size() == 0) {  
  194.             DatabaseMetaData metaData = conn.getMetaData();  
  195.             int driverMaxConnections = metaData.getMaxConnections();  
  196.             // 數據庫返回的 driverMaxConnections 若爲 0 ,表示此數據庫沒有最大  
  197.             // 鏈接限制,或數據庫的最大鏈接限制不知道  
  198.             // driverMaxConnections 爲返回的一個整數,表示此數據庫容許客戶鏈接的數目  
  199.             // 若是鏈接池中設置的最大鏈接數量大於數據庫容許的鏈接數目 , 則置鏈接池的最大  
  200.             // 鏈接數目爲數據庫容許的最大數目  
  201.             if (driverMaxConnections > 0  
  202.                     && this.maxConnections > driverMaxConnections) {  
  203.                 this.maxConnections = driverMaxConnections;  
  204.             }  
  205.         }  
  206.         return conn; // 返回建立的新的數據庫鏈接  
  207.     }  
  208.   
  209.     /** 
  210.      * 經過調用 getFreeConnection() 函數返回一個可用的數據庫鏈接 , 若是當前沒有可用的數據庫鏈接,而且更多的數據庫鏈接不能創 
  211.      * 建(如鏈接池大小的限制),此函數等待一會再嘗試獲取。 
  212.      *  
  213.      * @return 返回一個可用的數據庫鏈接對象 
  214.      */  
  215.   
  216.     public synchronized Connection getConnection() throws SQLException {  
  217.         // 確保鏈接池己被建立  
  218.         if (connections == null) {  
  219.             return null; // 鏈接池還沒建立,則返回 null  
  220.         }  
  221.         Connection conn = getFreeConnection(); // 得到一個可用的數據庫鏈接  
  222.         // 若是目前沒有可使用的鏈接,即全部的鏈接都在使用中  
  223.         while (conn == null) {  
  224.             // 等一會再試  
  225.             // System.out.println("Wait");  
  226.             wait(250);  
  227.             conn = getFreeConnection(); // 從新再試,直到得到可用的鏈接,若是  
  228.             // getFreeConnection() 返回的爲 null  
  229.             // 則代表建立一批鏈接後也不可得到可用鏈接  
  230.         }  
  231.         return conn;// 返回得到的可用的鏈接  
  232.     }  
  233.   
  234.     /** 
  235.      * 本函數從鏈接池向量 connections 中返回一個可用的的數據庫鏈接,若是 當前沒有可用的數據庫鏈接,本函數則根據 
  236.      * incrementalConnections 設置 的值建立幾個數據庫鏈接,並放入鏈接池中。 若是建立後,全部的鏈接仍都在使用中,則返回 null 
  237.      *  
  238.      * @return 返回一個可用的數據庫鏈接 
  239.      */  
  240.     private Connection getFreeConnection() throws SQLException {  
  241.         // 從鏈接池中得到一個可用的數據庫鏈接  
  242.         Connection conn = findFreeConnection();  
  243.         if (conn == null) {  
  244.             // 若是目前鏈接池中沒有可用的鏈接  
  245.             // 建立一些鏈接  
  246.             createConnections(incrementalConnections);  
  247.             // 從新從池中查找是否有可用鏈接  
  248.             conn = findFreeConnection();  
  249.             if (conn == null) {  
  250.                 // 若是建立鏈接後仍得到不到可用的鏈接,則返回 null  
  251.                 return null;  
  252.             }  
  253.         }  
  254.         return conn;  
  255.     }  
  256.   
  257.     /** 
  258.      * 查找鏈接池中全部的鏈接,查找一個可用的數據庫鏈接, 若是沒有可用的鏈接,返回 null 
  259.      *  
  260.      * @return 返回一個可用的數據庫鏈接 
  261.      */  
  262.   
  263.     private Connection findFreeConnection() throws SQLException {  
  264.         Connection conn = null;  
  265.         PooledConnection pConn = null;  
  266.         // 得到鏈接池向量中全部的對象  
  267.         Enumeration enumerate = connections.elements();  
  268.         // 遍歷全部的對象,看是否有可用的鏈接  
  269.         while (enumerate.hasMoreElements()) {  
  270.             pConn = (PooledConnection) enumerate.nextElement();  
  271.             if (!pConn.isBusy()) {  
  272.                 // 若是此對象不忙,則得到它的數據庫鏈接並把它設爲忙  
  273.                 conn = pConn.getConnection();  
  274.                 pConn.setBusy(true);  
  275.                 // 測試此鏈接是否可用  
  276.                 if (!testConnection(conn)) {  
  277.                     // 若是此鏈接不可再用了,則建立一個新的鏈接,  
  278.                     // 並替換此不可用的鏈接對象,若是建立失敗,返回 null  
  279.                     try {  
  280.                         conn = newConnection();  
  281.                     } catch (SQLException e) {  
  282.                         System.out.println(" 建立數據庫鏈接失敗! " + e.getMessage());  
  283.                         return null;  
  284.                     }  
  285.                     pConn.setConnection(conn);  
  286.                 }  
  287.                 break; // 己經找到一個可用的鏈接,退出  
  288.             }  
  289.         }  
  290.         return conn;// 返回找到到的可用鏈接  
  291.     }  
  292.   
  293.     /** 
  294.      * 測試一個鏈接是否可用,若是不可用,關掉它並返回 false 不然可用返回 true 
  295.      *  
  296.      * @param conn 
  297.      *            須要測試的數據庫鏈接 
  298.      * @return 返回 true 表示此鏈接可用, false 表示不可用 
  299.      */  
  300.   
  301.     private boolean testConnection(Connection conn) {  
  302.         try {  
  303.             // 判斷測試表是否存在  
  304.             if (testTable.equals("")) {  
  305.                 // 若是測試表爲空,試着使用此鏈接的 setAutoCommit() 方法  
  306.                 // 來判斷鏈接否可用(此方法只在部分數據庫可用,若是不可用 ,  
  307.                 // 拋出異常)。注意:使用測試表的方法更可靠  
  308.                 conn.setAutoCommit(true);  
  309.             } else {// 有測試表的時候使用測試表測試  
  310.                 // check if this connection is valid  
  311.                 Statement stmt = conn.createStatement();  
  312.                 stmt.execute("select count(*) from " + testTable);  
  313.             }  
  314.         } catch (SQLException e) {  
  315.             // 上面拋出異常,此鏈接己不可用,關閉它,並返回 false;  
  316.             closeConnection(conn);  
  317.             return false;  
  318.         }  
  319.         // 鏈接可用,返回 true  
  320.         return true;  
  321.     }  
  322.   
  323.     /** 
  324.      * 此函數返回一個數據庫鏈接到鏈接池中,並把此鏈接置爲空閒。 全部使用鏈接池得到的數據庫鏈接均應在不使用此鏈接時返回它。 
  325.      *  
  326.      * @param 需返回到鏈接池中的鏈接對象 
  327.      */  
  328.   
  329.     public void returnConnection(Connection conn) {  
  330.         // 確保鏈接池存在,若是鏈接沒有建立(不存在),直接返回  
  331.         if (connections == null) {  
  332.             System.out.println(" 鏈接池不存在,沒法返回此鏈接到鏈接池中 !");  
  333.             return;  
  334.         }  
  335.         PooledConnection pConn = null;  
  336.         Enumeration enumerate = connections.elements();  
  337.         // 遍歷鏈接池中的全部鏈接,找到這個要返回的鏈接對象  
  338.         while (enumerate.hasMoreElements()) {  
  339.             pConn = (PooledConnection) enumerate.nextElement();  
  340.             // 先找到鏈接池中的要返回的鏈接對象  
  341.             if (conn == pConn.getConnection()) {  
  342.                 // 找到了 , 設置此鏈接爲空閒狀態  
  343.                 pConn.setBusy(false);  
  344.                 break;  
  345.             }  
  346.         }  
  347.     }  
  348.   
  349.     /** 
  350.      * 刷新鏈接池中全部的鏈接對象 
  351.      *  
  352.      */  
  353.   
  354.     public synchronized void refreshConnections() throws SQLException {  
  355.         // 確保鏈接池己創新存在  
  356.         if (connections == null) {  
  357.             System.out.println(" 鏈接池不存在,沒法刷新 !");  
  358.             return;  
  359.         }  
  360.         PooledConnection pConn = null;  
  361.         Enumeration enumerate = connections.elements();  
  362.         while (enumerate.hasMoreElements()) {  
  363.             // 得到一個鏈接對象  
  364.             pConn = (PooledConnection) enumerate.nextElement();  
  365.             // 若是對象忙則等 5 秒 ,5 秒後直接刷新  
  366.             if (pConn.isBusy()) {  
  367.                 wait(5000); // 等 5 秒  
  368.             }  
  369.             // 關閉此鏈接,用一個新的鏈接代替它。  
  370.             closeConnection(pConn.getConnection());  
  371.             pConn.setConnection(newConnection());  
  372.             pConn.setBusy(false);  
  373.         }  
  374.     }  
  375.   
  376.     /** 
  377.      * 關閉鏈接池中全部的鏈接,並清空鏈接池。 
  378.      */  
  379.   
  380.     public synchronized void closeConnectionPool() throws SQLException {  
  381.         // 確保鏈接池存在,若是不存在,返回  
  382.         if (connections == null) {  
  383.             System.out.println(" 鏈接池不存在,沒法關閉 !");  
  384.             return;  
  385.         }  
  386.         PooledConnection pConn = null;  
  387.         Enumeration enumerate = connections.elements();  
  388.         while (enumerate.hasMoreElements()) {  
  389.             pConn = (PooledConnection) enumerate.nextElement();  
  390.             // 若是忙,等 5 秒  
  391.             if (pConn.isBusy()) {  
  392.                 wait(5000); // 等 5 秒  
  393.             }  
  394.             // 5 秒後直接關閉它  
  395.             closeConnection(pConn.getConnection());  
  396.             // 從鏈接池向量中刪除它  
  397.             connections.removeElement(pConn);  
  398.         }  
  399.         // 置鏈接池爲空  
  400.         connections = null;  
  401.     }  
  402.   
  403.     /** 
  404.      * 關閉一個數據庫鏈接 
  405.      *  
  406.      * @param 須要關閉的數據庫鏈接 
  407.      */  
  408.   
  409.     private void closeConnection(Connection conn) {  
  410.         try {  
  411.             conn.close();  
  412.         } catch (SQLException e) {  
  413.             System.out.println(" 關閉數據庫鏈接出錯: " + e.getMessage());  
  414.         }  
  415.     }  
  416.     /** 
  417.      * 使程序等待給定的毫秒數 
  418.      *  
  419.      * @param 給定的毫秒數 
  420.      */  
  421.   
  422.     private void wait(int mSeconds) {  
  423.         try {  
  424.             Thread.sleep(mSeconds);  
  425.         } catch (InterruptedException e) {  
  426.         }  
  427.     }  
  428.     /** 
  429.      *  
  430.      * 內部使用的用於保存鏈接池中鏈接對象的類 此類中有兩個成員,一個是數據庫的鏈接,另外一個是指示此鏈接是否 正在使用的標誌。 
  431.      */  
  432.   
  433.     class PooledConnection {  
  434.         Connection connection = null;// 數據庫鏈接  
  435.         boolean busy = false; // 此鏈接是否正在使用的標誌,默認沒有正在使用  
  436.   
  437.         // 構造函數,根據一個 Connection 構告一個 PooledConnection 對象  
  438.         public PooledConnection(Connection connection) {  
  439.             this.connection = connection;  
  440.         }  
  441.   
  442.         // 返回此對象中的鏈接  
  443.         public Connection getConnection() {  
  444.             return connection;  
  445.         }  
  446.   
  447.         // 設置此對象的,鏈接  
  448.         public void setConnection(Connection connection) {  
  449.             this.connection = connection;  
  450.         }  
  451.   
  452.         // 得到對象鏈接是否忙  
  453.         public boolean isBusy() {  
  454.             return busy;  
  455.         }  
  456.   
  457.         // 設置對象的鏈接正在忙  
  458.         public void setBusy(boolean busy) {  
  459.             this.busy = busy;  
  460.         }  
  461.     }  
  462.   
  463. }  
//////////////////////////////// 數據庫鏈接池類 ConnectionPool.java ////////////////////////////////////////

ConnectionPoolUtils.java

 

 

[java] view plain copy
 
print?
  1. /*鏈接池工具類,返回惟一的一個數據庫鏈接池對象,單例模式*/  
  2. public class ConnectionPoolUtils {  
  3.     private ConnectionPoolUtils(){};//私有靜態方法  
  4.     private static ConnectionPool poolInstance = null;  
  5.     public static ConnectionPool GetPoolInstance(){  
  6.         if(poolInstance == null) {  
  7.             poolInstance = new ConnectionPool(                     
  8.                     "com.mysql.jdbc.Driver",                   
  9.                     "jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf-8",                
  10.                     "root", "123456");  
  11.             try {  
  12.                 poolInstance.createPool();  
  13.             } catch (Exception e) {  
  14.                 // TODO Auto-generated catch block  
  15.                 e.printStackTrace();  
  16.             }  
  17.         }  
  18.         return poolInstance;  
  19.     }  
  20. }  
 
 
ConnectionPoolTest.java

 

 

[java] view plain copy
 
print?
  1. import java.sql.Connection;  
  2. import java.sql.DriverManager;  
  3. import java.sql.ResultSet;  
  4. import java.sql.SQLException;  
  5. import java.sql.Statement;  
  6.   
  7.   
  8. public class ConnectionTest {  
  9.   
  10.     /** 
  11.      * @param args 
  12.      * @throws Exception  
  13.      */  
  14.     public static void main(String[] args) throws Exception {  
  15.          try {  
  16.                   /*使用鏈接池建立100個鏈接的時間*/   
  17.                    /*// 建立數據庫鏈接庫對象 
  18.                    ConnectionPool connPool = new ConnectionPool("com.mysql.jdbc.Driver","jdbc:mysql://localhost:3306/test", "root", "123456"); 
  19.                    // 新建數據庫鏈接庫 
  20.                    connPool.createPool();*/  
  21.                
  22.                   ConnectionPool  connPool=ConnectionPoolUtils.GetPoolInstance();//單例模式建立鏈接池對象  
  23.                     // SQL測試語句  
  24.                    String sql = "Select * from pet";  
  25.                    // 設定程序運行起始時間  
  26.                    long start = System.currentTimeMillis();  
  27.                          // 循環測試100次數據庫鏈接  
  28.                           for (int i = 0; i < 100; i++) {  
  29.                               Connection conn = connPool.getConnection(); // 從鏈接庫中獲取一個可用的鏈接  
  30.                               Statement stmt = conn.createStatement();  
  31.                               ResultSet rs = stmt.executeQuery(sql);  
  32.                               while (rs.next()) {  
  33.                                   String name = rs.getString("name");  
  34.                                //  System.out.println("查詢結果" + name);  
  35.                               }  
  36.                               rs.close();  
  37.                               stmt.close();  
  38.                               connPool.returnConnection(conn);// 鏈接使用完後釋放鏈接到鏈接池  
  39.                           }  
  40.                           System.out.println("通過100次的循環調用,使用鏈接池花費的時間:"+ (System.currentTimeMillis() - start) + "ms");  
  41.                           // connPool.refreshConnections();//刷新數據庫鏈接池中全部鏈接,即無論鏈接是否正在運行,都把全部鏈接都釋放並放回到鏈接池。注意:這個耗時比較大。  
  42.                          connPool.closeConnectionPool();// 關閉數據庫鏈接池。注意:這個耗時比較大。  
  43.                           // 設定程序運行起始時間  
  44.                           start = System.currentTimeMillis();  
  45.                             
  46.                           /*不使用鏈接池建立100個鏈接的時間*/  
  47.                          // 導入驅動  
  48.                           Class.forName("com.mysql.jdbc.Driver");  
  49.                           for (int i = 0; i < 100; i++) {  
  50.                               // 建立鏈接  
  51.                              Connection conn = DriverManager.getConnection(  
  52.                                       "jdbc:mysql://localhost:3306/test", "root", "123456");  
  53.                               Statement stmt = conn.createStatement();  
  54.                               ResultSet rs = stmt.executeQuery(sql);  
  55.                              while (rs.next()) {  
  56.                               }  
  57.                              rs.close();  
  58.                              stmt.close();  
  59.                              conn.close();// 關閉鏈接  
  60.                          }  
  61.                          System.out.println("通過100次的循環調用,不使用鏈接池花費的時間:"  
  62.                                  + (System.currentTimeMillis() - start) + "ms");  
  63.                      } catch (SQLException e) {  
  64.                         e.printStackTrace();  
  65.                      } catch (ClassNotFoundException e) {  
  66.                          e.printStackTrace();  
  67.                     }  
  68.     }  
相關文章
相關標籤/搜索