关于springboot:SpringBoot数据库连接池常用配置

34次阅读

共计 925 个字符,预计需要花费 3 分钟才能阅读完成。

创立 yml 配置文件,退出如下配置即可:

spring:
  datasource:
    driver-class-name: com.mysql.jdbc.Driver
    username: root
    password: root
    url: jdbc:mysql://localhost:3306/zzz?characterEncoding=utf8&useUnicode=true&useSSL=false&serverTimezone=Asia/Shanghai&allowMultiQueries=true
    type: com.alibaba.druid.pool.DruidDataSource
    # 上面为连接池的补充设置,利用到下面所有数据源中
    # 初始化大小,最小,最大
    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 FROM DUAL
    test-while-idle: true
    test-on-borrow: false
    test-on-return: false
    # 关上 PSCache,并且指定每个连贯上 PSCache 的大小
    pool-prepared-statements: true
    # 配置监控统计拦挡的 filters,去掉后监控界面 sql 无奈统计,'wall' 用于防火墙
    max-pool-prepared-statement-per-connection-size: 20
    filters: stat,wall
    use-global-data-source-stat: true
    # 通过 connectProperties 属性来关上 mergeSql 性能;慢 SQL 记录
    connect-properties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000

正文完
 0