1234567891011121314151617181920212223242526272829303132 |
- spring:
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driverClassName: com.mysql.jdbc.Driver
-
- url: jdbc:mysql://localhost:3306/ry?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true
- username: root
- password: password
-
- initialSize: 1
- minIdle: 3
- maxActive: 20
-
- maxWait: 60000
-
- timeBetweenEvictionRunsMillis: 60000
-
- minEvictableIdleTimeMillis: 30000
- validationQuery: select 'x'
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
-
- poolPreparedStatements: true
- maxPoolPreparedStatementPerConnectionSize: 20
-
- filters: stat,wall,slf4j
-
- connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
-
-
|