| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- spring:
- crss-stl:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_settlement
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_meterprocess
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- crss-metering:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_metering
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- crss-nmms:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_nmms
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- crss-dataflow:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_dataflow
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- crss-registration:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=registration
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- redis:
- host: localhost
- port: 6379
- jpa:
- show-sql: false
- generate-ddl: false
- properties:
- hibernate:
- generate_statistics: false
- ddl-auto: none
- batch:
- resourceLocation: "file:target/libs/crss-settlement-task-calculation-2.5.0.BUILD-SNAPSHOT.jar"
|