| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- spring:
- datasource:
- url: jdbc:postgresql://localhost:5432/crss?currentSchema=registration
- username: crss_registration
- password: CrssRegistration
- crss-stl:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_settlement
- username: postgres
- password: postgres
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_dataflow
- username: postgres
- password: postgres
- xdf-control:
- datasource:
- url: jdbc:postgresql://localhost:5432/dor_rt
- username: dor_rt
- password: dor_rt
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_meterprocess
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- connectionTimeout: 10000
- maxPoolSize: 20
- jpa:
- show-sql: false
- generate-ddl: false
- server:
- port: 8081
- crss:
- docmgt:
- root-dir: /tmp/crss/docmgt
- xdf:
- client-type: local # OPTIONS:[local, ftp, sftp]
- root-folder: /tmp/crss/xdf
- auto-create-dir: true
- file-encoding: UTF-8
- file-exists-mode: fail # OPTIONS:[append, append_no_flush, fail, ignore, replace]
- remote:
- host: localhost
- port: 22
- username: crss
- password: crss
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: pemc-storage.southeastasia.cloudapp.azure.com
- port: 22
|