12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- spring:
- datasource:
- type: com.alibaba.druid.pool.DruidDataSource
- driverClassName: com.mysql.jdbc.Driver
- druid:
-
- master:
- url: jdbc:mysql://10.32.2.212:3306/suishenbang_order?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT%2B8
- username: root
- password: libang
-
- slave:
-
- enabled: false
- driverClassName: com.sap.db.jdbc.Driver
- url: jdbc:sap://hanaentsltp.nipponpaint.com.cn:30015?reconnect=true
- username: SSB_HANA
- password: Erty567*
-
- initialSize: 10
-
- minIdle: 20
-
- maxActive: 40
-
- maxWait: 60000
-
- timeBetweenEvictionRunsMillis: 60000
-
- minEvictableIdleTimeMillis: 300000
-
- maxEvictableIdleTimeMillis: 900000
-
- validationQuery: SELECT 1 FROM DUAL
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
- webStatFilter:
- enabled: true
- statViewServlet:
- enabled: true
-
- allow:
- url-pattern: /druid/*
-
- login-username:
- login-password:
- filter:
- stat:
- enabled: true
-
- log-slow-sql: true
- slow-sql-millis: 5000
- merge-sql: true
- wall:
- config:
- multi-statement-allow: true
|