| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- spring:
- profiles.include: client-sec
- crss-worklist:
- datasource:
- jdbcUrl: jdbc:edb://10.176.11.131:5432/crss?currentSchema=worklist
- username: crss_worklist
- password: c3XL8Lcb
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 5
- crss-stl:
- datasource:
- jdbcUrl: jdbc:edb://10.176.11.131:5432/crss?currentSchema=settlement
- username: crss_settlement
- password: i17SMOPm
- driverClassName: com.edb.Driver
- connectionTimeout: 150000
- maximumPoolSize: 5
- 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
- jpa:
- show-sql: false
- generate-ddl: false
- properties:
- hibernate:
- dialect: org.hibernate.dialect.PostgreSQLDialect
- ddl-auto: none
- server:
- port: 8085
- 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
|