常用的jdbc的Druid连接池配置

spring:
  datasource:
    username: root
    password: 888888
    url: jdbc:mysql://localhost:3306/mybatis
    driver-class-name: com.mysql.jdbc.Driver

    type: com.alibaba.druid.pool.DruidDataSource
    initialSize: 5
    minIdle: 5
    maxActive: 20
    maxWait: 60000
    timeBetweenEvictionRunsMillis: 60000
    minEvictableIdleTimeMillis: 300000
    validationQuery: SELECT 1 FROM DUAL
    testWhileIdle: true
    testOnBorrow: false
    testOnReturn: false
    poolPreparedStatements: true
#   配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
#    filters: stat,wall,log4j
#    maxPoolPreparedStatementPerConnectionSize: 20
#    useGlobalDataSourceStat: true
#    connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=500
    schema:
      - classpath:department.sql

常用的jdbc的Druid连接池配置常用的jdbc的Druid连接池配置 好名字让你容易记住 发布了43 篇原创文章 · 获赞 3 · 访问量 1043 私信 关注
上一篇:Wall Painting HDU - 4810(按位算贡献)


下一篇:leetcode 858. 镜面反射