Druid
連線池是阿里巴巴開源的資料庫連線池專案,後來貢獻給Apache
開源;
Druid
的作用是負責分配、管理和釋放資料庫連線,它允許應用程式重複使用一個現有的資料庫連線,而不是再重新建立一個;
Druid
連線池內建強大的監控功能,其中的StatFilter
功能,能採集非常完備的連線池執行資訊,方便進行監控,而監控特性不影響效能。
Druid
連線池內建了一個監控頁面,提供了非常完備的監控資訊,可以快速診斷系統的瓶頸。
SpringBoot 1.x
版本預設使用的的tomcat
的jdbc
連線池,由於jdbc
效能,穩定性,監控能力都不不太好,所以SpringBoot 2.x
版本後 預設連線池已經替換成了HikariCP
,HikariCP
效能強、速度快、口碑好、程式碼少和穩定,暫時不推薦替換成成其他連線池。
這裡記錄springboot
專案整合druid
資料庫連線池中介軟體:
資源準備及版本說明
程式設計工具:IDEA
JDK版本:1.8
Maven版本:Apache Maven 3.6.3
springboot版本:2.4.4
mybatis版本:1.3.2
mysql版本:5.1.48
druid版本:1.1.21
建立mavem專案
通過IDEA
建立很便捷,參考《IDEA建立SpringBoot的maven專案》,springboot專案整合mybatis參考《springboot專案整合mybatis》。
配置pom.xml
druid
的pom
依賴有兩個版本,一個需要編寫配置檔案,一個是自動配置的,這裡選擇自動配置版本
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.21</version>
</dependency>
完整pom.xml配置如下:
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.4.4</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.example</groupId>
<artifactId>springboot-druid</artifactId>
<version>1.0-SNAPSHOT</version>
<properties>
<java.version>1.8</java.version>
<mybatis.version>1.3.2</mybatis.version>
<mysql.version>5.1.48</mysql.version>
<druid.version>1.1.9</druid.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>${mysql.version}</version>
</dependency>
<!-- <dependency>-->
<!-- <groupId>com.alibaba</groupId>-->
<!-- <artifactId>druid</artifactId>-->
<!-- <version>${druid.version}</version>-->
<!-- </dependency>-->
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>druid-spring-boot-starter</artifactId>
<version>1.1.21</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
配置application.yml
application.yml
配置檔案中需要配置druid
的相關資訊
配置說明如下:
完整application.yml配置如下:
server:
port: 8888
spring:
application:
name: springboot-druid
datasource:
username: root
password: 123456
url: jdbc:mysql://localhost:3306/spring-boot-test?useUnicode=true&characterEncoding=utf-8&useSSL=true&serverTimezone=UTC
driver-class-name: com.mysql.jdbc.Driver
type: com.alibaba.druid.pool.DruidDataSource # 資料庫連線池類別
druid:
initial-size: 5 # 初始化大小
min-idle: 10 # 最小連線數
max-active: 20 # 最大連線數
max-wait: 60000 # 獲取連線時的最大等待時間
min-evictable-idle-time-millis: 300000 # 一個連線在池中最小生存的時間,單位是毫秒
time-between-eviction-runs-millis: 60000 # 多久才進行一次檢測需要關閉的空閒連線,單位是毫秒
filters: stat,wall # 配置擴充套件外掛:stat-監控統計,log4j-日誌,wall-防火牆(防止SQL隱碼攻擊),去掉後,監控介面的sql無法統計
validation-query: SELECT 1 # 檢測連線是否有效的 SQL語句,為空時以下三個配置均無效
test-on-borrow: true # 申請連線時執行validationQuery檢測連線是否有效,預設true,開啟後會降低效能
test-on-return: true # 歸還連線時執行validationQuery檢測連線是否有效,預設false,開啟後會降低效能
test-while-idle: true # 申請連線時如果空閒時間大於timeBetweenEvictionRunsMillis,執行validationQuery檢測連線是否有效,預設false,建議開啟,不影響效能
stat-view-servlet:
enabled: true # 是否開啟 StatViewServlet
allow: 127.0.0.1 # 訪問監控頁面 白名單,預設127.0.0.1
deny: 192.168.56.1 # 訪問監控頁面 黑名單
login-username: admin # 訪問監控頁面 登陸賬號
login-password: admin # 訪問監控頁面 登陸密碼
filter:
stat:
enabled: true # 是否開啟 FilterStat,預設true
log-slow-sql: true # 是否開啟 慢SQL 記錄,預設false
slow-sql-millis: 5000 # 慢 SQL 的標準,預設 3000,單位:毫秒
merge-sql: false # 合併多個連線池的監控資料,預設false
# mybatis配置
mybatis:
mapper-locations: classpath:mapper/*Mapper.xml
type-aliases-package: com.dandelion.model
# 輸出sql語句日誌
logging:
level:
com:
springboot:
dao: debug
訪問druid監控中心
啟動專案:
在瀏覽器中輸入http://IP:埠號/druid/index.html
訪問監控中心
如果有配置登入賬號密碼,則需要進行登入:
定義測試介面查詢資料庫:
監控中心記錄訪問情況