概况
Druid
是阿里巴巴生态中的一员,不仅提供了高效的数据库连接池,还包括了SQL解析和数据源监控
功能。在系统中遇到慢SQL问题时,借助Druid的监控能力,可以快速地定位问题所在,从而提高系统的性能和效率。
Github地址:https://github.com/alibaba/druid
项目框架
SpringBoot + Mybatis-Plus + MySQL8 + druid
引入
1 2 3 4 5
| <dependency> <groupId>com.alibaba</groupId> <artifactId>druid-spring-boot-starter</artifactId> <version>1.2.16</version> </dependency>
|
配置
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
| spring: datasource: driver-class-name: com.mysql.cj.jdbc.Driver url: jdbc:mysql://127.0.0.1:3306/z-self?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai&allowMultiQueries=true username: root password: 123456 druid: initial-size: 5 min-idle: 5 max-active: 20 max-wait: 60000 time-between-eviction-runs-millis: 60000 min-evictable-idle-time-millis: 300000 validation-query: SELECT 1 validation-query-timeout: 1 test-while-idle: true test-on-borrow: false test-on-return: false pool-prepared-statements: false max-pool-prepared-statement-per-connection-size: -1 filters: stat,wall,slf4j filter: stat: enabled: true db-type: mysql log-slow-sql: true slow-sql-millis: 10000 slow-sql-log-level: ERROR merge-sql: false wall: enabled: true config: insert-allow: true update-allow: true update-where-none-check: true delete-allow: true delete-where-none-check: true alter-table-allow: false drop-table-allow: false slf4j: enabled: true data-source-log-enabled: false connection-log-enabled: false statement-executable-sql-log-enable: true result-set-log-enabled: true stat-view-servlet: enabled: true reset-enable: true allow: 127.0.0.1 deny: 192.168.0.100 login-username: druid login-password: 123456 web-stat-filter: enabled: true url-pattern: /* exclusions: .js,*.gif,*.jpg,*.bmp,*.png,*.css,*.ico,/druid/* session-stat-enable: true session-stat-max-count: 100
|
编写
简单编写查询接口,该接口需要查询数据库,此处略过
系统放行
Spring Security
配置类
1 2 3 4 5 6
| @Override protected void configure(HttpSecurity http) throws Exception { http.antMatchers("/druid/**").permitAll() ....... }
|
Shrio
......
测试
访问监控页面
下面为ip地址为yaml中配置的白名单
http://127.0.0.1:8724/druid/login.html

监控信息
客户端向服务器请求
http://localhost:8724/z-self/api/bill/ie/child/cate/list
SQL监听&定位&分析
druid 监控默认配置为每5秒发送请求,监听
客户端发送给服务器的请求
并记录执行时间,如下:

点击SQL,也可以清晰看到相关的SQL详情,执行时间等信息

如果出现了慢SQL,根据这SQL去做分析
,索引是否需要添加,索引是否失效,业务SQL是否能优化,数据量的是多少
参考 https://www.cnblogs.com/cao-lei/p/17172886.html
参考 https://blog.csdn.net/qq_37393071/article/details/116325263