This commit is contained in:
geoffrey 2022-03-13 23:09:16 +08:00
parent 31b5e7a2e7
commit 688d0d0b90
2 changed files with 7 additions and 7 deletions

View File

@ -24,6 +24,7 @@ http://localhost:8080/user/getUserList
测试慢sql接口
</br>
http://localhost:8080/user/getSlowUserList
#监控地址
http://localhost:8080/druid
# 延伸阅读

View File

@ -11,17 +11,16 @@ spring:
driver-class-name: com.mysql.cj.jdbc.Driver
filters: stat # 配置监控统计拦截的filters
initial-size: 10 # 初始化大小,最小,最大
min-idle: 8
min-idle: 10
max-active: 20
max-wait: 60000 # 配置获取连接等待超时的时间
time-between-eviction-runs-millis: 60000 # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
min-evictable-idle-time-millis: 300000 # 配置一个连接在池中最小生存的时间,单位是毫秒
validation-query: select 'x'
test-while-idle: true
test-on-borrow: false
test-on-return: false
pool-prepared-statements: true
max-open-prepared-statements: 20
test-while-idle: true #建议配置为true不影响性能并且保证安全性。申请连接的时候检测如果空闲时间大于timeBetweenEvictionRunsMillis执行validationQuery检测连接是否 有效。
test-on-borrow: false #申请连接时执行validationQuery检测连接是否有效做了这个配置会降低性能。
test-on-return: false #归还连接时执行validationQuery检测连接是否有效做了这个配置会降低性能
pool-prepared-statements: false #是否缓存preparedStatement也就是PSCache。PSCache对支持游标的数据库性能提升巨大比如说oracle。在mysql下建议关闭。
filter:
stat:
slow-sql-millis: 1000 #slowSqlMillis的缺省值为3000也就是3秒。