| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- spring:
- profiles.include: client-sec
- crss-stl:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=settlement&ApplicationName=stlApp
- username: crss_settlement
- password: i17SMOPm
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 10
- test-on-borrow: true
- validation-query: SELECT 1
- crss-worklist:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=worklist
- username: crss_worklist
- password: c3XL8Lcb
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 3
- crss-main:
- datasource:
- jdbcUrl: jdbc:edb://${crss.database.ip}:5432/crss?currentSchema=meterprocess
- username: crss_meterprocess
- password: D9JpfUtT
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 3
- jpa:
- show-sql: false
- generate-ddl: false
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQLDialect
- hbm2ddl:
- import_files:
- temp:
- use_jdbc_metadata_defaults: false
- # prevent batch job from running on app start
- batch:
- job:
- enabled: false
- http:
- multipart:
- maxRequestSize: 100MB
- maxFileSize: 10MB
- server:
- port: 8082
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- session:
- cookie:
- secure: true
- logging:
- level:
- com.pemc: DEBUG
- com.netflix: DEBUG
- org.springframework.cloud: DEBUG
- org.apache.http: DEBUG
- dataflow:
- url: http://spring-cloud-data-flow.marathon.l4lb.thisdcos.directory:9393
- sftp:
- credentials:
- username: pemc
- password: 123qwe
- host: sftp.marathon.l4lb.thisdcos.directory
- port: 22
- workingDirectory: /upload/stl
- workingUploadDirectory: /stl
- privateKey:
- job:
- maxRun: 1
- report:
- directory:
- base: report/
|