| 123456789101112131415161718192021222324252627282930313233 |
- spring:
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_meterprocess
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-metering:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_metering
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- crss-registration:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss_reg
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- maxPoolSize: 5
- test-on-borrow: true
- validation-query: SELECT 1
- jpa:
- show-sql: false
- logging:
- level:
- com.pemc: debug
|