java程式很大一部分要操作資料庫,為了提高性能操作資料庫的時候,有不得不使用資料庫連接配接池。資料庫連接配接池有很多選擇,c3p、dhcp、proxool等,druid作為一名後起之秀,憑借其出色的性能,也逐漸印入了大家的眼簾。接下來本教程就說一下druid的簡單使用。
首先從http://repo1.maven.org/maven2/com/alibaba/druid/ 下載下傳最新的jar包。如果想使用最新的源碼編譯,可以從https://github.com/alibaba/druid 下載下傳源碼,然後使用maven指令行,或者導入到eclipse中進行編譯。
1 配置
和dbcp類似,druid的配置項如下
配置 | 預設值 | 說明 |
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 | 初始化時建立實體連接配接的個數。初始化發生在顯示調用init方法, 或者第一次getConnection時 | |
maxActive | 8 | 最大連接配接池數量 |
maxIdle | 8 | 已經不再使用,配置了也沒效果 |
minIdle | 最小連接配接池數量 | |
maxWait | 擷取連接配接時最大等待時間,機關毫秒。配置了maxWait之後, 預設啟用公平鎖,并發效率會有所下降, 如果需要可以通過配置useUnfairLock屬性為true使用非公平鎖。 | |
poolPreparedStatements | false | 是否緩存preparedStatement,也就是PSCache。 PSCache對支援遊标的資料庫性能提升巨大,比如說oracle。 在mysql5.5以下的版本中沒有PSCache功能,建議關閉掉。 作者在5.5版本中使用PSCache,通過監控界面發現PSCache有緩存命中率記錄, 該應該是支援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目錄下。
[plain] view plain copy
- url:jdbc:mysql://localhost:3306/dragoon_v25_masterdb
- driverClassName:com.mysql.jdbc.Driver
- username:root
- password:aaaaaaaa
- filters:stat
- maxActive:20
- initialSize:1
- maxWait:60000
- minIdle:10
- #maxIdle:15
- timeBetweenEvictionRunsMillis:60000
- minEvictableIdleTimeMillis:300000
- validationQuery:SELECT 'x'
- testWhileIdle:true
- testOnBorrow:false
- testOnReturn:false
- #poolPreparedStatements:true
- maxOpenPreparedStatements:20
- #對于長時間不使用的連接配接強制關閉
- removeAbandoned:true
- #超過30分鐘開始關閉空閑連接配接
- removeAbandonedTimeout:1800
- #将目前關閉動作記錄到日志
- logAbandoned:true
配置檔案1.1
配置項中指定了各個參數後,在連接配接池内部是這麼使用這些參數的。資料庫連接配接池在初始化的時候會建立initialSize個連接配接,當有資料庫操作時,會從池中取出一個連接配接。如果目前池中正在使用的連接配接數等于maxActive,則會等待一段時間,等待其他操作釋放掉某一個連接配接,如果這個等待時間超過了maxWait,則會報錯;如果目前正在使用的連接配接數沒有達到maxActive,則判斷目前是否空閑連接配接,如果有則直接使用空閑連接配接,如果沒有則建立立一個連接配接。在連接配接使用完畢後,不是将其實體連接配接關閉,而是将其放入池中等待其他操作複用。
同時連接配接池内部有機制判斷,如果目前的總的連接配接數少于miniIdle,則會建立新的空閑連接配接,以保證連接配接數得到miniIdle。如果目前連接配接池中某個連接配接在空閑了timeBetweenEvictionRunsMillis時間後任然沒有使用,則被實體性的關閉掉。有些資料庫連接配接的時候有逾時限制(mysql連接配接在8小時後斷開),或者由于網絡中斷等原因,連接配接池的連接配接會出現失效的情況,這時候設定一個testWhileIdle參數為true,可以保證連接配接池内部定時檢測連接配接的可用性,不可用的連接配接會被抛棄或者重建,最大情況的保證從連接配接池中得到的Connection對象是可用的。當然,為了保證絕對的可用性,你也可以使用testOnBorrow為true(即在擷取Connection對象時檢測其可用性),不過這樣會影響性能。
2 代碼編寫
2.1 使用spring
首先給出spring配置檔案
[html] view plain copy
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd
- http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
- http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd">
- <!-- 給web使用的spring檔案 -->
- <bean id="propertyConfigurer"
- class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
- <property name="locations">
- <list>
- <value>/WEB-INF/classes/dbconfig.properties</value>
- </list>
- </property>
- </bean>
- <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource"
- destroy-method="close">
- <property name="url" value="${url}" />
- <property name="username" value="${username}" />
- <property name="password" value="${password}" />
- <property name="driverClassName" value="${driverClassName}" />
- <property name="filters" value="${filters}" />
- <property name="maxActive" value="${maxActive}" />
- <property name="initialSize" value="${initialSize}" />
- <property name="maxWait" value="${maxWait}" />
- <property name="minIdle" value="${minIdle}" />
- <property name="timeBetweenEvictionRunsMillis" value="${timeBetweenEvictionRunsMillis}" />
- <property name="minEvictableIdleTimeMillis" value="${minEvictableIdleTimeMillis}" />
- <property name="validationQuery" value="${validationQuery}" />
- <property name="testWhileIdle" value="${testWhileIdle}" />
- <property name="testOnBorrow" value="${testOnBorrow}" />
- <property name="testOnReturn" value="${testOnReturn}" />
- <property name="maxOpenPreparedStatements"
- value="${maxOpenPreparedStatements}" />
- <property name="removeAbandoned" value="${removeAbandoned}" /> <!-- 打開removeAbandoned功能 -->
- <property name="removeAbandonedTimeout" value="${removeAbandonedTimeout}" /> <!-- 1800秒,也就是30分鐘 -->
- <property name="logAbandoned" value="${logAbandoned}" /> <!-- 關閉abanded連接配接時輸出錯誤日志 -->
- </bean>
- <bean id="dataSourceDbcp" class="org.apache.commons.dbcp.BasicDataSource"
- destroy-method="close">
- <property name="driverClassName" value="${driverClassName}" />
- <property name="url" value="${url}" />
- <property name="username" value="${username}" />
- <property name="password" value="${password}" />
- <property name="maxActive" value="${maxActive}" />
- <property name="minIdle" value="${minIdle}" />
- <property name="maxWait" value="${maxWait}" />
- <property name="defaultAutoCommit" value="true" />
- <property name="timeBetweenEvictionRunsMillis" value="${timeBetweenEvictionRunsMillis}" />
- <property name="minEvictableIdleTimeMillis" value="${minEvictableIdleTimeMillis}" />
- <property name="validationQuery" value="${validationQuery}" />
- <property name="testWhileIdle" value="${testWhileIdle}" />
- <property name="testOnBorrow" value="${testOnBorrow}" />
- <property name="testOnReturn" value="${testOnReturn}" />
- <property name="maxOpenPreparedStatements"
- value="${maxOpenPreparedStatements}" />
- <property name="removeAbandoned" value="${removeAbandoned}" />
- <property name="removeAbandonedTimeout" value="${removeAbandonedTimeout}" />
- <property name="logAbandoned" value="${logAbandoned}" />
- </bean>
- <!-- jdbcTemplate -->
- <bean id="jdbc" class="org.springframework.jdbc.core.JdbcTemplate">
- <property name="dataSource">
- <ref bean="dataSource" />
- </property>
- </bean>
- <bean id="SpringTableOperatorBean" class="com.whyun.druid.model.TableOperator"
- scope="prototype">
- <property name="dataSource">
- <ref bean="dataSource" />
- </property>
- </bean>
- </beans>
配置檔案2.1
其中第一個bean中給出的配置檔案/WEB-INF/classes/dbconfig.properties就是第1節中給出的配置檔案。我這裡還特地給出dbcp的spring配置項,目的就是将兩者進行對比,友善大家進行遷移。這裡沒有使用JdbcTemplate,是以jdbc那個bean沒有使用到。下面給出com.whyun.druid.model.TableOperator類的代碼。
[java] view plain copy
- package com.whyun.druid.model;
- import java.sql.Connection;
- import java.sql.PreparedStatement;
- import java.sql.SQLException;
- import java.sql.Statement;
- import javax.sql.DataSource;
- public class TableOperator {
- private DataSource dataSource;
- public void setDataSource(DataSource dataSource) {
- this.dataSource = dataSource;
- }
- private static final int COUNT = 800;
- public TableOperator() {
- }
- public void tearDown() throws Exception {
- try {
- dropTable();
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
- public void insert() throws Exception {
- StringBuffer ddl = new StringBuffer();
- ddl.append("INSERT INTO t_big (");
- for (int i = 0; i < COUNT; ++i) {
- if (i != 0) {
- ddl.append(", ");
- }
- ddl.append("F" + i);
- }
- ddl.append(") VALUES (");
- for (int i = 0; i < COUNT; ++i) {
- if (i != 0) {
- ddl.append(", ");
- }
- ddl.append("?");
- }
- ddl.append(")");
- Connection conn = dataSource.getConnection();
- // System.out.println(ddl.toString());
- PreparedStatement stmt = conn.prepareStatement(ddl.toString());
- for (int i = 0; i < COUNT; ++i) {
- stmt.setInt(i + 1, i);
- }
- stmt.execute();
- stmt.close();
- conn.close();
- }
- private void dropTable() throws SQLException {
- Connection conn = dataSource.getConnection();
- Statement stmt = conn.createStatement();
- stmt.execute("DROP TABLE t_big");
- stmt.close();
- conn.close();
- }
- public void createTable() throws SQLException {
- StringBuffer ddl = new StringBuffer();
- ddl.append("CREATE TABLE t_big (FID INT AUTO_INCREMENT PRIMARY KEY ");
- for (int i = 0; i < COUNT; ++i) {
- ddl.append(", ");
- ddl.append("F" + i);
- ddl.append(" BIGINT NULL");
- }
- ddl.append(")");
- Connection conn = dataSource.getConnection();
- Statement stmt = conn.createStatement();
- stmt.execute(ddl.toString());
- stmt.close();
- conn.close();
- }
- }
代碼片段2.1
注意:在使用的時候,通過擷取完Connection對象,在使用完之後,要将其close掉,這樣其實是将用完的連接配接放入到連接配接池中,如果你不close的話,會造成連接配接洩露。
然後我們寫一個servlet來測試他.
[java] view plain copy
- package com.whyun.druid.servelt;
- import java.io.IOException;
- import java.io.PrintWriter;
- import java.sql.SQLException;
- import javax.servlet.ServletContext;
- import javax.servlet.ServletException;
- import javax.servlet.http.HttpServlet;
- import javax.servlet.http.HttpServletRequest;
- import javax.servlet.http.HttpServletResponse;
- import org.springframework.web.context.WebApplicationContext;
- import org.springframework.web.context.support.WebApplicationContextUtils;
- import com.whyun.druid.model.TableOperator;
- public class TestServlet extends HttpServlet {
- private TableOperator operator;
- @Override
- public void init() throws ServletException {
- super.init();
- ServletContext servletContext = this.getServletContext();
- WebApplicationContext ctx
- = WebApplicationContextUtils.getWebApplicationContext(servletContext);
- operator = (TableOperator)ctx.getBean("SpringTableOperatorBean");
- }
- public void doGet(HttpServletRequest request, HttpServletResponse response)
- throws ServletException, IOException {
- response.setContentType("text/html");
- PrintWriter out = response.getWriter();
- boolean createResult = false;
- boolean insertResult = false;
- boolean dropResult = false;
- try {
- operator.createTable();
- createResult = true;
- } catch (SQLException e) {
- e.printStackTrace();
- }
- if (createResult) {
- try {
- operator.insert();
- insertResult = true;
- } catch (Exception e) {
- e.printStackTrace();
- }
- try {
- operator.tearDown();
- dropResult = true;
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- out.println("{'createResult':"+createResult+",'insertResult':"
- +insertResult+",'dropResult':"+dropResult+"}");
- out.flush();
- out.close();
- }
- }
代碼片段2.2
這裡沒有用到struts2或者springmvc,雖然大部分開發者用的是這兩種架構。
2.2 不使用spring
類似于dbcp,druid也提供了原生态的支援。這裡僅僅列出來了如何擷取一個DataSource對象,實際使用中要将擷取DataSource的過程封裝到一個單體模式類中。先看下面這段代碼:
[java] view plain copy
- package com.whyun.util.db;
- import javax.sql.DataSource;
- import org.apache.commons.dbcp.BasicDataSourceFactory;
- import com.alibaba.druid.pool.DruidDataSourceFactory;
- import com.whyun.util.config.MySqlConfigProperty;
- import com.whyun.util.config.MySqlConfigProperty2;
- import com.whyun.util.db.source.AbstractDataSource;
- import com.whyun.util.db.source.impl.DbcpSourceMysql;
- import com.whyun.util.db.source.impl.DruidSourceMysql;
- import com.whyun.util.db.source.impl.DruidSourceMysql2;
- // TODO: Auto-generated Javadoc
- public class DataSourceUtil {
- public static final int DRUID_MYSQL_SOURCE = 0;
- private static DataSource duirdMysqlSource;
- public static final int DRUID_MYSQL_SOURCE2 = 1;
- private static DataSource druidMysqlSource2;
- public static final int DBCP_SOURCE = 4;
- private static DataSource dbcpSource;
- public static final DataSource getDataSource(int sourceType)
- throws Exception {
- DataSource dataSource = null;
- switch(sourceType) {
- case DRUID_MYSQL_SOURCE:
- if (duirdMysqlSource == null) {
- duirdMysqlSource = DruidDataSourceFactory.createDataSource(
- MySqlConfigProperty.getInstance().getProperties());
- }
- dataSource = duirdMysqlSource;
- break;
- case DRUID_MYSQL_SOURCE2:
- if (druidMysqlSource2 == null) {
- druidMysqlSource2 = DruidDataSourceFactory.createDataSource(
- MySqlConfigProperty2.getInstance().getProperties());
- }
- dataSource = druidMysqlSource2;
- break;
- case DBCP_SOURCE:
- if (dbcpSource == null) {
- dbcpSource = BasicDataSourceFactory.createDataSource(
- MySqlConfigProperty.getInstance().getProperties());
- }
- dataSource = dbcpSource;
- break;
- }
- return dataSource;
- }
- public static final DataSource getDataSource2(int sourceType) throws Exception {
- AbstractDataSource abstractDataSource = null;
- switch(sourceType) {
- case DRUID_MYSQL_SOURCE:
- abstractDataSource = DruidSourceMysql.getInstance();
- break;
- case DRUID_MYSQL_SOURCE2:
- abstractDataSource = DruidSourceMysql2.getInstance();
- break;
- case DBCP_SOURCE:
- abstractDataSource = DbcpSourceMysql.getInstance();
- break;
- }
- return abstractDataSource == null ?
- null :
- abstractDataSource.getDataSource();
- }
- }
代碼片段2.3 手動讀取配置檔案初始化連接配接池
第37行中調用了類com.alibaba.druid.pool.DruidDataSourceFactory中createDataSource方法來初始化一個連接配接池。對比dbcp的使用方法,兩者很相似。
下面給出一個多線程的測試程式。運作後可以比較druid和dbcp的性能差别。
[java] view plain copy
- package com.whyun.druid.test;
- import java.sql.SQLException;
- import java.util.ArrayList;
- import java.util.List;
- import java.util.concurrent.Callable;
- import java.util.concurrent.ExecutorService;
- import java.util.concurrent.Executors;
- import java.util.concurrent.Future;
- import java.util.concurrent.TimeUnit;
- import com.whyun.druid.model.TableOperator;
- import com.whyun.util.db.DataSourceUtil;
- public class MutilThreadTest {
- public static void test(int dbType, int times)
- throws Exception {
- int numOfThreads =Runtime.getRuntime().availableProcessors()*2;
- ExecutorService executor = Executors.newFixedThreadPool(numOfThreads);
- final TableOperator test = new TableOperator();
- // int dbType = DataSourceUtil.DRUID_MYSQL_SOURCE;
- // dbType = DataSourceUtil.DBCP_SOURCE;
- test.setDataSource(DataSourceUtil.getDataSource(dbType));
- boolean createResult = false;
- try {
- test.createTable();
- createResult = true;
- } catch (SQLException e) {
- e.printStackTrace();
- }
- if (createResult) {
- List<Future<Long>> results = new ArrayList<Future<Long>>();
- for (int i = 0; i < times; i++) {
- results.add(executor.submit(new Callable<Long>() {
- @Override
- public Long call() throws Exception {
- long begin = System.currentTimeMillis();
- try {
- test.insert();
- //insertResult = true;
- } catch (Exception e) {
- e.printStackTrace();
- }
- long end = System.currentTimeMillis();
- return end - begin;
- }
- }));
- }
- executor.shutdown();
- while(!executor.awaitTermination(Long.MAX_VALUE, TimeUnit.DAYS));
- long sum = 0;
- for (Future<Long> result : results) {
- sum += result.get();
- }
- System.out.println("---------------db type "+dbType+"------------------");
- System.out.println("number of threads :" + numOfThreads + " times:" + times);
- System.out.println("running time: " + sum + "ms");
- System.out.println("TPS: " + (double)(100000 * 1000) / (double)(sum));
- System.out.println();
- try {
- test.tearDown();
- //dropResult = true;
- } catch (Exception e) {
- e.printStackTrace();
- }
- } else {
- System.out.println("初始化資料庫失敗");
- }
- }
- public static void main (String argc[])
- throws Exception {
- test(DataSourceUtil.DBCP_SOURCE,50);
- test(DataSourceUtil.DRUID_MYSQL_SOURCE,50);
- }
- }
代碼片段2.4 連接配接池多線程測試程式
3 監控
3.1 web監控
druid提供了sql語句查詢時間等資訊的監控功能。為了讓資料庫查詢一直運作,下面特地寫了一個ajax進行輪詢。同時,還要保證在web.xml中配置如下資訊
[html] view plain copy
- <servlet>
- <servlet-name>DruidStatView</servlet-name>
- <servlet-class>com.alibaba.druid.support.http.StatViewServlet</servlet-class>
- </servlet>
- <servlet-mapping>
- <servlet-name>DruidStatView</servlet-name>
- <url-pattern>/druid/*</url-pattern>
- </servlet-mapping>
配置檔案3.1 在web.xml中添加druid監控
同時将ajax代碼提供如下
[javascript] view plain copy
- function showTime() {
- var myDate = new Date();
- var timeStr = '';
- timeStr += myDate.getFullYear()+'-'; //擷取完整的年份(4位,1970-????)
- timeStr += myDate.getMonth()+'-'; //擷取目前月份(0-11,0代表1月)
- timeStr += myDate.getDate() + ' '; //擷取目前日(1-31)
- timeStr += myDate.getHours()+':'; //擷取目前小時數(0-23)
- timeStr += myDate.getMinutes()+':'; //擷取目前分鐘數(0-59)
- timeStr += myDate.getSeconds(); //擷取目前秒數(0-59)
- return timeStr
- }
- $(document).ready(function() {
- function loadDBTestMessage() {
- $.get('servlet/MysqlTestServlet',function(data) {
- if (typeof(data) != 'object') {
- data = eval('(' + data + ')');
- }
- var html = '['+showTime()+']';
- html += '建立:' + data['createResult'];
- html += '插入:' + data['insertResult'];
- html += '銷毀:' + data['dropResult'];
- html +=
- $('#message').html(html);
- });
- }
- setInterval(function() {
- loadDBTestMessage();
- }, 10000);
- });
代碼片段3.1 ajax輪詢
這時打開http://localhost/druid-web/druid/ 位址,會看到監控界面,點選其中的sql标簽。
圖3.1 監控界面檢視sql查詢時間
注意:在寫配置檔案1.1時,要保證filter配置項中含有stat屬性,否則這個地方看不到sql語句的監控資料。
表格中各項含義如下
名稱 | 解釋 | 備注 |
ExecuteCount | 目前sql已執行次數 | |
ExecTime | 目前sql已執行時間 | |
ExecMax | 目前sql最大執行時間 | |
Txn | 目前運作的事務數量 | |
Error | 目前sql執行出錯的數目 | |
Update | 目前sql更新或者删除操作中已經影響的行數 | |
FetchRow | 目前sql操作中已經讀取的行數 | |
Running | 目前sql正在運作的數目 | |
Concurrent | 目前sql最大并發執行數 | |
ExecHisto | 目前sql做execute操作的時間分布數組 | 分為0-1,1-10,10-100,100-1000,>1000,5個時間分布區域,機關為ms |
ExecRsHisto | 目前sql做execute操作和resultSet 打開至關閉的時間總和分布數組 | 同上 |
FetchRowHisto | 目前sql查詢時間分布數組 | 同上 |
UpdateHisto | 目前sql更新、删除時間分布數組 | 同上 |
表3.1 監控字段含義
老版本的druid的jar包中不支援通過web界面進行遠端監控,從0.2.14開始可以通過配置jmx位址來擷取遠端運作druid的伺服器的監控資訊。具體配置方法如下:
[html] view plain copy
- <servlet>
- <servlet-name>DruidStatView</servlet-name>
- <servlet-class>com.alibaba.druid.support.http.StatViewServlet</servlet-class>
- <init-param>
- <param-name>jmxUrl</param-name>
- <param-value>service:jmx:rmi:///jndi/rmi://localhost:9004/jmxrmi</param-value>
- </init-param>
- </servlet>
- <servlet-mapping>
- <servlet-name>DruidStatView</servlet-name>
- <url-pattern>/druid/*</url-pattern>
- </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://blog.csdn.net/zhanyuanlin/article/details/9983171