建立yml配置文件,加入以下配置便可:mysql
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