1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- # log config
- logging:
- config: classpath:log4j2.xml
- level:
- io.swagger.models.parameters.AbstractSerializableParameter: error
- spring:
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- druid:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://?useUnicode=true&characterEncoding=UTF-8&serverTimezone=Asia/Shanghai
- username:
- password:
- initial-size: 10
- max-active: 100
- min-idle: 10
- max-wait: 600000
- pool-prepared-statements: true
- max-pool-prepared-statement-per-connection-size: 20
- time-between-eviction-runs-millis: 60000
- min-evictable-idle-time-millis: 300000
- #Oracle需要打开注释
- #validation-query: SELECT 1 FROM DUAL
- test-while-idle: true
- test-on-borrow: false
- test-on-return: false
- stat-view-servlet:
- enabled: true
- url-pattern: /druid/*
- #login-username: admin
- #login-password: admin
- filter:
- stat:
- log-slow-sql: true
- slow-sql-millis: 1000
- merge-sql: false
- wall:
- config:
- multi-statement-allow: true
- redis:
- host:
- port: 6379
- database: 6
- timeout: 30000
- password: # 密码(默认为空)
- maxTotal: 500
- maxIdle: 5
- maxWaitMillis: 100000
|