12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- server:
- port: 8089
- tomcat:
- uri-encoding: UTF-8
- servlet:
- context-path: /
- spring:
- servlet:
- multipart:
- max-file-size: 100MB
- max-request-size: 100MB
- datasource:
- druid:
- zjjg-mysql:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://192.168.0.199:3306/sg_zjjg?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true
- # url: jdbc:mysql://localhost:3306/sg_zjjg_sjdr?useUnicode=true&characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=true&serverTimezone=GMT%2B8&nullCatalogMeansCurrent=true
- username: root
- password: 123456
- initial-size: 10
- max-active: 20
- min-idle: 1
- max-wait: 60000
- time-between-eviction-runs-millis: 60000
- min-evictable-idle-time-millis: 30000
- validation-query: select 1
- validation-query-timeout: 500
- test-while-idle: true
- test-on-borrow: false
- test-on-return: false
- pool-prepared-statements: false
- filters: stat
- connection-properties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=500
- stat-view-servlet.enabled: true
- yszj-oracle:
- driver-class-name: oracle.jdbc.driver.OracleDriver
- url: jdbc:oracle:thin:@192.168.0.199:1521:orcl
- username: yszjjg
- password: yszjjg
- initial-size: 1
- min-idle: 5
- max-active: 20
- max-wait: 30000
- time-between-eviction-runs-millis: 60000
- min-evictable-idle-time-millis: 30000
- validation-query: select 1 from dual
- test-while-idle: true
- test-on-borrow: false
- test-on-return: false
- pool-prepared-statements: true
- filters: stat,wall
- connection-properties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=500
- stat-view-servlet.enabled: true
- pagehelper:
- helper-dialect: oracle
- reasonable: true
- support-methods-arguments: true
- params: count=countSql
- logging:
- level:
- com.cool.bang: debug
- file:
- path: d:\log\coob
- cool:
- static-path: classpath:/static/
- file-path: D:/cool/
- expire-date: 2099-01-01
|