| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- spring:
- crss-main:
- datasource:
- jdbcUrl: jdbc:edb://10.176.11.131:5432/crss?currentSchema=meterprocess
- username: crss_meterprocess
- password: D9JpfUtT
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 3
- test-on-borrow: true
- validation-query: SELECT 1
- crss-metering:
- datasource:
- jdbcUrl: jdbc:edb://10.176.11.131:5432/crss?currentSchema=metering
- username: crss_metering
- password: Fh7UcXpW
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 3
- test-on-borrow: true
- validation-query: SELECT 1
- crss-registration:
- datasource:
- jdbcUrl: jdbc:edb://10.176.11.131:5432/crss?currentSchema=registration
- username: crss_registration
- password: 51UF3JA9
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 3
- test-on-borrow: true
- validation-query: SELECT 1
- jpa:
- show-sql: true
- hibernate:
- ddl-auto: none
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQLDialect
- namingStrategy: org.hibernate.cfg.ImprovedNamingStrategy
- hbm2ddl:
- auto: none
- temp:
- use_jdbc_metadata_defaults: false
- logging:
- level:
- com.pemc: debug
|