| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- spring:
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:edb://10.176.11.131:5432/crss?currentSchema=dataflow
- username: crss_dataflow
- password: lgcCpwy0
- driverClassName: com.edb.Driver
- maxPoolSize: 1
- test-on-borrow: true
- validation-query: SELECT 1
- crss-main:
- datasource:
- jdbcUrl: jdbc:edb://10.176.11.131:5432/crss?currentSchema=meterprocess
- username: crss_meterprocess
- password: D9JpfUtT
- driverClassName: com.edb.Driver
- maxPoolSize: 1
- test-on-borrow: true
- validation-query: SELECT 1
- crss-registration:
- dataSource:
- jdbcUrl: jdbc:edb://10.176.11.131:5432/crss?currentSchema=registration
- username: crss_registration
- password: 51UF3JA9
- driverClassName: com.edb.Driver
- maxPoolSize: 1
- test-on-borrow: true
- validation-query: SELECT 1
- jpa:
- show-sql: false
- generate-ddl: false
- open-in-view: false
- properties:
- hibernate:
- # generate_statistics: true
- dialect: org.hibernate.dialect.PostgreSQLDialect
- ddl-auto: none
- hbm2ddl:
- auto: none
- cloud:
- task:
- initialize:
- enable: false
- batch:
- initializer:
- enabled: false
- cache:
- jcache:
- config: ehcache3.xml
- redis:
- host: localhost
- port: 6379
- logging:
- level:
- com.pemc: debug
- # org.hibernate.stat: debug
- batch:
- chunkSize: 100
- maxWorkers: 10
- partitionSize:
- gap: 2000
- mq: 1500
- ssla: 1500
- report: 1
- mqreport:
- directory: /tmp/
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: sftp.marathon.l4lb.thisdcos.directory
- port: 22
- workingDirectory: /upload/mq
- privateKey:
|