| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- spring:
- crss-worklist:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=worklist
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- connectionTimeout: 10000
- maximumPoolSize: 5
- crss-stl:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=settlement
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- crss-main:
- datasource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=meterprocess
- username: postgres
- password: postgres
- driverClassName: org.postgresql.Driver
- crss-registration:
- dataSource:
- jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=registration
- username: postgres
- password: postgres
- jpa:
- show-sql: false
- generate-ddl: false
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQLDialect
- ddl-auto: none
- generate_statistics: true
- # prevent batch job from running on app start
- batch:
- job:
- enabled: false
- server:
- port: 8085
|