druid簡單教程

java程序很大一部分要操做數據庫,爲了提升性能操做數據庫的時候,有不得不使用數據庫鏈接池。數據庫鏈接池有不少選擇,c3p、dhcp、proxool等,druid做爲一名後起之秀,憑藉其出色的性能,也逐漸印入了你們的眼簾。接下來本教程就說一下druid的簡單使用。 javascript

 首先從http://repo1.maven.org/maven2/com/alibaba/druid/ 下載最新的jar包。若是想使用最新的源碼編譯,能夠從https://github.com/alibaba/druid 下載源碼,而後使用maven命令行,或者導入到eclipse中進行編譯。 html

1 配置

和dbcp相似,druid的配置項以下 java

配置 缺省值 說明
name   配置這個屬性的意義在於,若是存在多個數據源,監控的時候
能夠經過名字來區分開來。若是沒有配置,將會生成一個名字,
格式是:"DataSource-" + System.identityHashCode(this)
jdbcUrl   鏈接數據庫的url,不一樣數據庫不同。例如:
mysql : jdbc:mysql://10.20.153.104:3306/druid2 
oracle : jdbc:oracle:thin:@10.20.149.85:1521:ocnauto
username   鏈接數據庫的用戶名
password   鏈接數據庫的密碼。若是你不但願密碼直接寫在配置文件中,
可使用ConfigFilter。詳細看這裏:
https://github.com/alibaba/druid/wiki/%E4%BD%BF%E7%94%A8ConfigFilter
driverClassName 根據url自動識別 這一項可配可不配,若是不配置druid會根據url自動識別dbType,
而後選擇相應的driverClassName
initialSize 0 初始化時創建物理鏈接的個數。初始化發生在顯示調用init方法,
或者第一次getConnection時
maxActive 8 最大鏈接池數量
maxIdle 8 已經再也不使用,配置了也沒效果
minIdle   最小鏈接池數量
maxWait   獲取鏈接時最大等待時間,單位毫秒。配置了maxWait以後,
缺省啓用公平鎖,併發效率會有所降低,
若是須要能夠經過配置useUnfairLock屬性爲true使用非公平鎖。
poolPreparedStatements false 是否緩存preparedStatement,也就是PSCache。
PSCache對支持遊標的數據庫性能提高巨大,好比說oracle。
在mysql5.5如下的版本中沒有PSCache功能,建議關閉掉。
5.5及以上版本有PSCache,建議開啓。
maxOpenPreparedStatements -1 要啓用PSCache,必須配置大於0,當大於0時,
poolPreparedStatements自動觸發修改成true。
在Druid中,不會存在Oracle下PSCache佔用內存過多的問題,
能夠把這個數值配置大一些,好比說100
validationQuery   用來檢測鏈接是否有效的sql,要求是一個查詢語句。
若是validationQuery爲null,testOnBorrow、testOnReturn、
testWhileIdle都不會其做用。
testOnBorrow true 申請鏈接時執行validationQuery檢測鏈接是否有效,
作了這個配置會下降性能。
testOnReturn false 歸還鏈接時執行validationQuery檢測鏈接是否有效,
作了這個配置會下降性能
testWhileIdle false 建議配置爲true,不影響性能,而且保證安全性。
申請鏈接的時候檢測,若是空閒時間大於
timeBetweenEvictionRunsMillis,
執行validationQuery檢測鏈接是否有效。
timeBetweenEvictionRunsMillis   有兩個含義:
1) Destroy線程會檢測鏈接的間隔時間
 2) testWhileIdle的判斷依據,詳細看testWhileIdle屬性的說明
numTestsPerEvictionRun   再也不使用,一個DruidDataSource只支持一個EvictionRun
minEvictableIdleTimeMillis    
connectionInitSqls   物理鏈接初始化的時候執行的sql
exceptionSorter 根據dbType自動識別 當數據庫拋出一些不可恢復的異常時,拋棄鏈接
filters   屬性類型是字符串,經過別名的方式配置擴展插件,
經常使用的插件有:
監控統計用的filter:stat 
日誌用的filter:log4j
 防護sql注入的filter:wall
proxyFilters   類型是List<com.alibaba.druid.filter.Filter>,
若是同時配置了filters和proxyFilters,
是組合關係,並不是替換關係
表1.1 配置屬性

根據經常使用的配置屬性,首先給出一個以下的配置文件,放置於src目錄下。 mysql

[plain]  view plain copy
  1. url:jdbc:mysql://localhost:3306/dragoon_v25_masterdb  
  2. driverClassName:com.mysql.jdbc.Driver  
  3. username:root  
  4. password:aaaaaaaa  
  5.        
  6. filters:stat  
  7.    
  8. maxActive:20  
  9. initialSize:1  
  10. maxWait:60000  
  11. minIdle:10  
  12. #maxIdle:15  
  13.    
  14. timeBetweenEvictionRunsMillis:60000  
  15. minEvictableIdleTimeMillis:300000  
  16.    
  17. validationQuery:SELECT 'x'  
  18. testWhileIdle:true  
  19. testOnBorrow:false  
  20. testOnReturn:false  
  21. #poolPreparedStatements:true  
  22. maxOpenPreparedStatements:20  
  23.   
  24. #對於長時間不使用的鏈接強制關閉  
  25. removeAbandoned:true  
  26. #超過30分鐘開始關閉空閒鏈接  
  27. removeAbandonedTimeout:1800  
  28. #將當前關閉動做記錄到日誌  
  29. logAbandoned:true  

配置文件1.1  git

配置項中指定了各個參數後,在鏈接池內部是這麼使用這些參數的。數據庫鏈接池在初始化的時候會建立initialSize個鏈接,當有數據庫操做時,會從池中取出一個鏈接。若是當前池中正在使用的鏈接數等於maxActive,則會等待一段時間,等待其餘操做釋放掉某一個鏈接,若是這個等待時間超過了maxWait,則會報錯;若是當前正在使用的鏈接數沒有達到maxActive,則判斷當前是否空閒鏈接,若是有則直接使用空閒鏈接,若是沒有則新創建一個鏈接。在鏈接使用完畢後,不是將其物理鏈接關閉,而是將其放入池中等待其餘操做複用。 github

同時鏈接池內部有機制判斷,若是當前的總的鏈接數少於miniIdle,則會創建新的空閒鏈接,以保證鏈接數獲得miniIdle。若是當前鏈接池中某個鏈接在空閒了timeBetweenEvictionRunsMillis時間後任然沒有使用,則被物理性的關閉掉。有些數據庫鏈接的時候有超時限制(mysql鏈接在8小時後斷開),或者因爲網絡中斷等緣由,鏈接池的鏈接會出現失效的狀況,這時候設置一個testWhileIdle參數爲true,能夠保證鏈接池內部定時檢測鏈接的可用性,不可用的鏈接會被拋棄或者重建,最大狀況的保證從鏈接池中獲得的Connection對象是可用的。固然,爲了保證絕對的可用性,你也可使用testOnBorrow爲true(即在獲取Connection對象時檢測其可用性),不過這樣會影響性能。 web

2 代碼編寫

2.1 使用spring

首先給出spring配置文件 ajax

[html]  view plain copy
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.     xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd  
  5.         http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd  
  6.         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">  
  7.     <!-- 給web使用的spring文件 -->  
  8.     <bean id="propertyConfigurer"  
  9.         class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">  
  10.         <property name="locations">  
  11.             <list>  
  12.                 <value>/WEB-INF/classes/dbconfig.properties</value>  
  13.             </list>  
  14.         </property>  
  15.     </bean>  
  16.     <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"  
  17.         destroy-method="close">  
  18.         <property name="url" value="${url}" />  
  19.         <property name="username" value="${username}" />  
  20.         <property name="password" value="${password}" />  
  21.         <property name="driverClassName" value="${driverClassName}" />  
  22.         <property name="filters" value="${filters}" />  
  23.   
  24.         <property name="maxActive" value="${maxActive}" />  
  25.         <property name="initialSize" value="${initialSize}" />  
  26.         <property name="maxWait" value="${maxWait}" />  
  27.         <property name="minIdle" value="${minIdle}" />  
  28.   
  29.         <property name="timeBetweenEvictionRunsMillis" value="${timeBetweenEvictionRunsMillis}" />  
  30.         <property name="minEvictableIdleTimeMillis" value="${minEvictableIdleTimeMillis}" />  
  31.   
  32.         <property name="validationQuery" value="${validationQuery}" />  
  33.         <property name="testWhileIdle" value="${testWhileIdle}" />  
  34.         <property name="testOnBorrow" value="${testOnBorrow}" />  
  35.         <property name="testOnReturn" value="${testOnReturn}" />  
  36.         <property name="maxOpenPreparedStatements"  
  37.             value="${maxOpenPreparedStatements}" />  
  38.         <property name="removeAbandoned" value="${removeAbandoned}" /> <!-- 打開removeAbandoned功能 -->  
  39.         <property name="removeAbandonedTimeout" value="${removeAbandonedTimeout}" /> <!-- 1800秒,也就是30分鐘 -->  
  40.         <property name="logAbandoned" value="${logAbandoned}" /> <!-- 關閉abanded鏈接時輸出錯誤日誌 -->  
  41.     </bean>  
  42.       
  43.     <bean id="dataSourceDbcp" class="org.apache.commons.dbcp.BasicDataSource"  
  44.         destroy-method="close">  
  45.   
  46.         <property name="driverClassName" value="${driverClassName}" />  
  47.         <property name="url" value="${url}" />  
  48.         <property name="username" value="${username}" />  
  49.         <property name="password" value="${password}" />  
  50.           
  51.         <property name="maxActive" value="${maxActive}" />  
  52.         <property name="minIdle" value="${minIdle}" />  
  53.         <property name="maxWait" value="${maxWait}" />  
  54.         <property name="defaultAutoCommit" value="true" />  
  55.           
  56.         <property name="timeBetweenEvictionRunsMillis" value="${timeBetweenEvictionRunsMillis}" />  
  57.         <property name="minEvictableIdleTimeMillis" value="${minEvictableIdleTimeMillis}" />  
  58.           
  59.         <property name="validationQuery" value="${validationQuery}" />  
  60.         <property name="testWhileIdle" value="${testWhileIdle}" />  
  61.         <property name="testOnBorrow" value="${testOnBorrow}" />  
  62.         <property name="testOnReturn" value="${testOnReturn}" />  
  63.         <property name="maxOpenPreparedStatements"  
  64.             value="${maxOpenPreparedStatements}" />  
  65.         <property name="removeAbandoned" value="${removeAbandoned}" />   
  66.         <property name="removeAbandonedTimeout" value="${removeAbandonedTimeout}" />  
  67.         <property name="logAbandoned" value="${logAbandoned}" />  
  68.     </bean>  
  69.   
  70.       
  71.     <!-- jdbcTemplate -->  
  72.     <bean id="jdbc" class="org.springframework.jdbc.core.JdbcTemplate">  
  73.         <property name="dataSource">  
  74.             <ref bean="dataSource" />  
  75.         </property>  
  76.     </bean>  
  77.   
  78.     <bean id="SpringTableOperatorBean" class="com.whyun.druid.model.TableOperator"  
  79.         scope="prototype">  
  80.         <property name="dataSource">  
  81.             <ref bean="dataSource" />  
  82.         </property>  
  83.     </bean>  
  84.       
  85. </beans>  


配置文件2.1 spring

其中第一個bean中給出的配置文件/WEB-INF/classes/dbconfig.properties就是第1節中給出的配置文件。我這裏還特意給出dbcp的spring配置項,目的就是將二者進行對比,方便你們進行遷移。這裏沒有使用JdbcTemplate,因此jdbc那個bean沒有使用到。下面給出com.whyun.druid.model.TableOperator類的代碼。 sql

[java]  view plain copy
  1. package com.whyun.druid.model;  
  2.   
  3. import java.sql.Connection;  
  4. import java.sql.PreparedStatement;  
  5. import java.sql.SQLException;  
  6. import java.sql.Statement;  
  7.   
  8. import javax.sql.DataSource;  
  9.   
  10. public class TableOperator {  
  11.     private DataSource dataSource;  
  12.     public void setDataSource(DataSource dataSource) {  
  13.         this.dataSource = dataSource;  
  14.     }  
  15.   
  16.     private static final int COUNT = 800;      
  17.   
  18.     public TableOperator() {  
  19.           
  20.     }  
  21.   
  22.     public void tearDown() throws Exception {  
  23.         try {  
  24.             dropTable();  
  25.         } catch (SQLException e) {  
  26.             e.printStackTrace();  
  27.         }         
  28.     }  
  29.   
  30.     public void insert() throws Exception {  
  31.           
  32.         StringBuffer ddl = new StringBuffer();  
  33.         ddl.append("INSERT INTO t_big (");  
  34.         for (int i = 0; i < COUNT; ++i) {  
  35.             if (i != 0) {  
  36.                 ddl.append(", ");  
  37.             }  
  38.             ddl.append("F" + i);  
  39.         }  
  40.         ddl.append(") VALUES (");  
  41.         for (int i = 0; i < COUNT; ++i) {  
  42.             if (i != 0) {  
  43.                 ddl.append(", ");  
  44.             }  
  45.             ddl.append("?");  
  46.         }  
  47.         ddl.append(")");  
  48.   
  49.         Connection conn = dataSource.getConnection();  
  50.   
  51. //        System.out.println(ddl.toString());  
  52.   
  53.         PreparedStatement stmt = conn.prepareStatement(ddl.toString());  
  54.   
  55.         for (int i = 0; i < COUNT; ++i) {  
  56.             stmt.setInt(i + 1, i);  
  57.         }  
  58.         stmt.execute();  
  59.         stmt.close();  
  60.   
  61.         conn.close();  
  62.     }  
  63.   
  64.     private void dropTable() throws SQLException {  
  65.   
  66.         Connection conn = dataSource.getConnection();  
  67.   
  68.         Statement stmt = conn.createStatement();  
  69.         stmt.execute("DROP TABLE t_big");  
  70.         stmt.close();  
  71.   
  72.         conn.close();  
  73.     }  
  74.   
  75.     public void createTable() throws SQLException {  
  76.         StringBuffer ddl = new StringBuffer();  
  77.         ddl.append("CREATE TABLE t_big (FID INT AUTO_INCREMENT PRIMARY KEY ");  
  78.         for (int i = 0; i < COUNT; ++i) {  
  79.             ddl.append(", ");  
  80.             ddl.append("F" + i);  
  81.             ddl.append(" BIGINT NULL");  
  82.         }  
  83.         ddl.append(")");  
  84.   
  85.         Connection conn = dataSource.getConnection();  
  86.   
  87.         Statement stmt = conn.createStatement();  
  88.         stmt.execute(ddl.toString());  
  89.         stmt.close();  
  90.   
  91.         conn.close();  
  92.     }  
  93. }  

代碼片斷2.1

注意:在使用的時候,經過獲取完Connection對象,在使用完以後,要將其close掉,這樣實際上是將用完的鏈接放入到鏈接池中,若是你不close的話,會形成鏈接泄露。

而後咱們寫一個servlet來測試他.
[java]  view plain copy
  1. package com.whyun.druid.servelt;  
  2.   
  3. import java.io.IOException;  
  4. import java.io.PrintWriter;  
  5. import java.sql.SQLException;  
  6.   
  7. import javax.servlet.ServletContext;  
  8. import javax.servlet.ServletException;  
  9. import javax.servlet.http.HttpServlet;  
  10. import javax.servlet.http.HttpServletRequest;  
  11. import javax.servlet.http.HttpServletResponse;  
  12.   
  13. import org.springframework.web.context.WebApplicationContext;  
  14. import org.springframework.web.context.support.WebApplicationContextUtils;  
  15.   
  16. import com.whyun.druid.model.TableOperator;  
  17.   
  18. public class TestServlet extends HttpServlet {  
  19.     private TableOperator operator;  
  20.       
  21.   
  22.     @Override  
  23.     public void init() throws ServletException {  
  24.           
  25.         super.init();  
  26.          ServletContext servletContext = this.getServletContext();     
  27.            
  28.          WebApplicationContext ctx  
  29.             = WebApplicationContextUtils.getWebApplicationContext(servletContext);  
  30.          operator = (TableOperator)ctx.getBean("SpringTableOperatorBean");  
  31.     }  
  32.   
  33.     /** 
  34.      * The doGet method of the servlet. <br> 
  35.      * 
  36.      * This method is called when a form has its tag value method equals to get. 
  37.      *  
  38.      * @param request the request send by the client to the server 
  39.      * @param response the response send by the server to the client 
  40.      * @throws ServletException if an error occurred 
  41.      * @throws IOException if an error occurred 
  42.      */  
  43.     public void doGet(HttpServletRequest request, HttpServletResponse response)  
  44.             throws ServletException, IOException {  
  45.   
  46.         response.setContentType("text/html");  
  47.         PrintWriter out = response.getWriter();  
  48.   
  49.         boolean createResult = false;  
  50.         boolean insertResult = false;  
  51.         boolean dropResult = false;  
  52.           
  53.         try {  
  54.             operator.createTable();  
  55.             createResult = true;  
  56.         } catch (SQLException e) {  
  57.             e.printStackTrace();  
  58.         }  
  59.         if (createResult) {  
  60.             try {  
  61.                 operator.insert();  
  62.                 insertResult = true;  
  63.             } catch (Exception e) {  
  64.                 e.printStackTrace();  
  65.             }  
  66.             try {  
  67.                 operator.tearDown();  
  68.                 dropResult = true;  
  69.             } catch (Exception e) {  
  70.                 e.printStackTrace();  
  71.             }  
  72.         }  
  73.           
  74.           
  75.         out.println("{'createResult':"+createResult+",'insertResult':"  
  76.                 +insertResult+",'dropResult':"+dropResult+"}");  
  77.           
  78.         out.flush();  
  79.         out.close();  
  80.     }  
  81.   
  82. }  
代碼片斷2.2

這裏沒有用到struts2或者springmvc,雖然大部分開發者用的是這兩種框架。

2.2 不使用spring

相似於dbcp,druid也提供了原生態的支持。這裏僅僅列出來瞭如何獲取一個DataSource對象,實際使用中要將獲取DataSource的過程封裝到一個單體模式類中。先看下面這段代碼:

[java]  view plain copy
  1. package com.whyun.util.db;  
  2.   
  3. import javax.sql.DataSource;  
  4.   
  5. import org.apache.commons.dbcp.BasicDataSourceFactory;  
  6.   
  7. import com.alibaba.druid.pool.DruidDataSourceFactory;  
  8. import com.whyun.util.config.MySqlConfigProperty;  
  9. import com.whyun.util.config.MySqlConfigProperty2;  
  10. import com.whyun.util.db.source.AbstractDataSource;  
  11. import com.whyun.util.db.source.impl.DbcpSourceMysql;  
  12. import com.whyun.util.db.source.impl.DruidSourceMysql;  
  13. import com.whyun.util.db.source.impl.DruidSourceMysql2;  
  14.   
  15. // TODO: Auto-generated Javadoc  
  16. /** 
  17.  * The Class DataSourceUtil. 
  18.  */  
  19. public class DataSourceUtil {  
  20.       
  21.     /** 使用配置文件dbconfig.properties構建Druid數據源. */  
  22.     public static final int DRUID_MYSQL_SOURCE = 0;  
  23.       
  24.     /** The duird mysql source. */  
  25.     private static DataSource duirdMysqlSource;  
  26.       
  27.     /** 使用配置文件dbconfig2.properties構建Druid數據源. */  
  28.     public static final int DRUID_MYSQL_SOURCE2 = 1;  
  29.       
  30.     /** The druid mysql source2. */  
  31.     private static DataSource druidMysqlSource2;  
  32.       
  33.     /** 使用配置文件dbconfig.properties構建Dbcp數據源. */  
  34.     public static final int DBCP_SOURCE = 4;  
  35.       
  36.     /** The dbcp source. */  
  37.     private static  DataSource dbcpSource;  
  38.       
  39.     /** 
  40.      * 根據類型獲取數據源. 
  41.      * 
  42.      * @param sourceType 數據源類型 
  43.      * @return druid或者dbcp數據源 
  44.      * @throws Exception the exception 
  45.      * @NotThreadSafe 
  46.      */  
  47.     public static final DataSource getDataSource(int sourceType)  
  48.         throws Exception {  
  49.         DataSource dataSource = null;  
  50.         switch(sourceType) {  
  51.         case DRUID_MYSQL_SOURCE:              
  52.               
  53.             if (duirdMysqlSource == null) {  
  54.                 duirdMysqlSource = DruidDataSourceFactory.createDataSource(  
  55.                     MySqlConfigProperty.getInstance().getProperties());  
  56.             }  
  57.             dataSource = duirdMysqlSource;  
  58.             break;  
  59.         case DRUID_MYSQL_SOURCE2:  
  60.             if (druidMysqlSource2 == null) {  
  61.                 druidMysqlSource2 = DruidDataSourceFactory.createDataSource(  
  62.                     MySqlConfigProperty2.getInstance().getProperties());  
  63.             }  
  64.             dataSource = druidMysqlSource2;  
  65.             break;  
  66.         case DBCP_SOURCE:  
  67.             if (dbcpSource == null) {  
  68.                 dbcpSource = BasicDataSourceFactory.createDataSource(  
  69.                     MySqlConfigProperty.getInstance().getProperties());  
  70.             }  
  71.             dataSource = dbcpSource;  
  72.             break;  
  73.         }  
  74.         return dataSource;  
  75.     }  
  76.       
  77.     /** 
  78.      * 根據數據庫類型標示獲取DataSource對象,跟{@link com.whyun.util.db.DataSourceUtil#getDataSource(int)} 
  79.      * 不一樣的是,這裏DataSource獲取的時候使用了單體模式 
  80.      * 
  81.      * @param sourceType 數據源類型 
  82.      * @return 獲取到的DataSource對象 
  83.      * @throws Exception the exception 
  84.      */  
  85.     public static final DataSource getDataSource2(int sourceType) throws Exception {  
  86.   
  87.         AbstractDataSource abstractDataSource = null;  
  88.         switch(sourceType) {  
  89.         case DRUID_MYSQL_SOURCE:              
  90.             abstractDataSource = DruidSourceMysql.getInstance();  
  91.             break;  
  92.         case DRUID_MYSQL_SOURCE2:  
  93.             abstractDataSource = DruidSourceMysql2.getInstance();  
  94.             break;  
  95.         case DBCP_SOURCE:  
  96.             abstractDataSource = DbcpSourceMysql.getInstance();  
  97.             break;  
  98.         }  
  99.         return abstractDataSource == null ?  
  100.                 null :  
  101.                     abstractDataSource.getDataSource();  
  102.     }  
  103. }  

代碼片斷2.3 手動讀取配置文件初始化鏈接池

第37行中調用了類com.alibaba.druid.pool.DruidDataSourceFactory中createDataSource方法來初始化一個鏈接池。對比dbcp的使用方法,二者很類似。

下面給出一個多線程的測試程序。運行後能夠比較druid和dbcp的性能差異。

[java]  view plain copy
  1. package com.whyun.druid.test;  
  2.   
  3. import java.sql.SQLException;  
  4. import java.util.ArrayList;  
  5. import java.util.List;  
  6. import java.util.concurrent.Callable;  
  7. import java.util.concurrent.ExecutorService;  
  8. import java.util.concurrent.Executors;  
  9. import java.util.concurrent.Future;  
  10. import java.util.concurrent.TimeUnit;  
  11.   
  12. import com.whyun.druid.model.TableOperator;  
  13. import com.whyun.util.db.DataSourceUtil;  
  14.   
  15. public class MutilThreadTest {  
  16.     public static void test(int dbType, int times)  
  17.         throws Exception {   
  18.         int numOfThreads =Runtime.getRuntime().availableProcessors()*2;  
  19.         ExecutorService executor = Executors.newFixedThreadPool(numOfThreads);    
  20.         final TableOperator test = new TableOperator();  
  21. //        int dbType = DataSourceUtil.DRUID_MYSQL_SOURCE;  
  22. //        dbType = DataSourceUtil.DBCP_SOURCE;  
  23.         test.setDataSource(DataSourceUtil.getDataSource(dbType));  
  24.           
  25.         boolean createResult = false;  
  26.         try {  
  27.             test.createTable();  
  28.             createResult = true;  
  29.         } catch (SQLException e) {  
  30.             e.printStackTrace();  
  31.         }  
  32.         if (createResult) {  
  33.             List<Future<Long>> results = new ArrayList<Future<Long>>();     
  34.             for (int i = 0; i < times; i++) {    
  35.                 results.add(executor.submit(new Callable<Long>() {    
  36.                     @Override    
  37.                     public Long call() throws Exception {    
  38.                             long begin = System.currentTimeMillis();  
  39.                                 try {  
  40.                                     test.insert();  
  41.                                     //insertResult = true;  
  42.                                 } catch (Exception e) {  
  43.                                     e.printStackTrace();  
  44.                                 }                             
  45.                             long end = System.currentTimeMillis();    
  46.                         return end - begin;    
  47.                     }    
  48.                 }));    
  49.             }    
  50.             executor.shutdown();    
  51.             while(!executor.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS));    
  52.                 
  53.             long sum = 0;    
  54.             for (Future<Long> result : results) {    
  55.                 sum += result.get();    
  56.             }    
  57.                 
  58.                 
  59.             System.out.println("---------------db type "+dbType+"------------------");    
  60.             System.out.println("number of threads :" + numOfThreads + " times:" + times);    
  61.             System.out.println("running time: " + sum + "ms");    
  62.             System.out.println("TPS: " + (double)(100000 * 1000) / (double)(sum));    
  63.             System.out.println();    
  64.             try {  
  65.                 test.tearDown();  
  66.                 //dropResult = true;  
  67.             } catch (Exception e) {  
  68.                 e.printStackTrace();  
  69.             }  
  70.         } else {  
  71.             System.out.println("初始化數據庫失敗");  
  72.         }  
  73.           
  74.     }    
  75.       
  76.     public static void main (String argc[])  
  77.         throws Exception {  
  78.         test(DataSourceUtil.DBCP_SOURCE,50);  
  79.         test(DataSourceUtil.DRUID_MYSQL_SOURCE,50);  
  80.           
  81.     }  
  82. }  

代碼片斷2.4 鏈接池多線程測試程序


3 監控

3.1 web監控

druid提供了sql語句查詢時間等信息的監控功能。爲了讓數據庫查詢一直運行,下面特意寫了一個ajax進行輪詢。同時,還要保證在web.xml中配置以下信息

[html]  view plain copy
  1. <servlet>  
  2.         <servlet-name>DruidStatView</servlet-name>  
  3.         <servlet-class>com.alibaba.druid.support.http.StatViewServlet</servlet-class>  
  4.     </servlet>  
  5. <servlet-mapping>  
  6.         <servlet-name>DruidStatView</servlet-name>  
  7.         <url-pattern>/druid/*</url-pattern>  
  8.     </servlet-mapping>  
配置文件3.1 在web.xml中添加druid監控


同時將ajax代碼提供以下

[javascript]  view plain copy
  1. function showTime() {  
  2.     var myDate = new Date();  
  3.     var timeStr = '';  
  4.     timeStr += myDate.getFullYear()+'-'//獲取完整的年份(4位,1970-????)  
  5.     timeStr += myDate.getMonth()+'-';      //獲取當前月份(0-11,0表明1月)  
  6.     timeStr += myDate.getDate() + ' ';      //獲取當前日(1-31)  
  7.     timeStr += myDate.getHours()+':';      //獲取當前小時數(0-23)  
  8.     timeStr += myDate.getMinutes()+':';    //獲取當前分鐘數(0-59)  
  9.     timeStr += myDate.getSeconds();    //獲取當前秒數(0-59)  
  10.     return timeStr  
  11. }  
  12. $(document).ready(function() {  
  13.     function loadDBTestMessage() {  
  14.         $.get('servlet/MysqlTestServlet',function(data) {  
  15.             if (typeof(data) != 'object') {  
  16.                 data = eval('(' + data + ')');  
  17.             }  
  18.             var html = '['+showTime()+']';  
  19.             html += '建立:' + data['createResult'];  
  20.             html +=  '插入:' + data['insertResult'];  
  21.             html += '銷燬:' + data['dropResult'];  
  22.             html +=   
  23.             $('#message').html(html);  
  24.         });  
  25.     }  
  26.       
  27.     setInterval(function() {  
  28.         loadDBTestMessage();  
  29.     }, 10000);  
  30. });  

代碼片斷3.1 ajax輪詢

這時打開http://localhost/druid-web/druid/ 地址,會看到監控界面,點擊其中的sql標籤。

圖3.1 監控界面查看sql查詢時間

注意:在寫配置文件1.1時,要保證filter配置項中含有stat屬性,不然這個地方看不到sql語句的監控數據。

從0.2.23開始監控界面支持中英文語言,因此這裏就不翻譯表格中的英文字段了。


老版本的druid的jar包中不支持經過web界面進行遠程監控,從0.2.14開始能夠經過配置jmx地址來獲取遠程運行druid的服務器的監控信息。具體配置方法以下:

[html]  view plain copy
  1. <servlet>  
  2.         <servlet-name>DruidStatView</servlet-name>  
  3.         <servlet-class>com.alibaba.druid.support.http.StatViewServlet</servlet-class>  
  4.         <init-param>  
  5.             <param-name>jmxUrl</param-name>  
  6.             <param-value>service:jmx:rmi:///jndi/rmi://localhost:9004/jmxrmi</param-value>  
  7.         </init-param>  
  8.     </servlet>  
  9.     <servlet-mapping>  
  10.         <servlet-name>DruidStatView</servlet-name>  
  11.         <url-pattern>/druid/*</url-pattern>  
  12.     </servlet-mapping>  
配置文件3.2 遠程監控web

這裏鏈接的配置參數中多了一個jmxUrl,裏面配置一個jmx鏈接地址,若是配置了這個init-param後,那麼當前web監控界面監控的就不是本機的druid的使用狀況,而是jmxUrl中指定的ip的遠程機器的druid使用狀況。jmx鏈接中也能夠指定用戶名、密碼,在上面的servlet中添加兩個init-param,其param-name分別爲jmxUsername和jmxPassword,分別對應鏈接jmx的用戶名和密碼。對於jmx在服務器端的配置,能夠參考3.2節中的介紹。

3.2 jconsole監控

同時druid提供了jconsole監控的功能,由於界面作的不是很好,因此官方中沒有對其的相關介紹。若是是純java程序的話,能夠簡單的使用jconsole,也可使用3.1中提到的經過配置init-param來訪問遠程druid。下面依然使用的是剛纔用的web項目來模擬druid所在的遠程機器。

如今假設有兩臺機器,一臺是運行druid的A機器,一臺是要查看druid運行信息的B機器。

首先在這臺遠程機器A的catalina.bat(或者catalina.sh)中加入java的啓動選項,放置於if "%OS%" == "Windows_NT" setlocal這句以後。

set JAVA_OPTS=%JAVA_OPTS% -Dcom.sun.management.jmxremote -Dcom.sun.management.jmxremote.port="9004" -Dcom.sun.management.jmxremote.authenticate="false" -Dcom.sun.management.jmxremote.ssl="false"

保存完以後,啓動startup.bat(或者startup.sh)來運行tomcat(上面設置java啓動項的配置,按理來講在eclipse中也能適用,可是筆者在其下沒有試驗成功)。而後在要查看監控信息的某臺電腦B的命令行中運行以下命令

jconsole -pluginpath E:\kuaipan\workspace6\druid-web\WebRoot\WEB-INF\lib\druid-0.2.11.jar

這裏的最後一個參數就是你的druid的jar包的路徑。

圖3.2 jconsole鏈接界面

在遠程進程的輸入框裏面輸入ip:端口號,而後點擊鏈接(上面的配置中沒有指定用戶名、密碼,因此這裏不用填寫)。打開的界面以下:

圖3.3 jconsole 鏈接成功界面

能夠看到和web監控界面相似的數據了。推薦直接使用web界面配置jmx地址方式來訪問遠程機器的druid使用狀況,由於這種方式查看到的數據信息更全面些。

參考


能夠訪問 http://git.oschina.net/yunnysunny/druid-demo 來獲取git版本庫中的最新代碼。

oschina 問答社區:  http://www.oschina.net/p/druid
相關文章
相關標籤/搜索