| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- spring:
- jpa:
- properties:
- hibernate.integration.envers.enabled: true
- jadira.usertype.autoRegisterUserTypes: true
- show-sql: false
- hibernate:
- ddl-auto: none
- dialect: org.hibernate.dialect.PostgreSQLDialect
- hbm2ddl:
- import_files:
- datasource:
- platform : postgres
- driverClassName: com.edb.Driver
- test-on-borrow: true
- validation-query: SELECT 1
- hikari:
- maximumPoolSize: 5 # default 10; since microservice with more than 1 instance, we set this lower
- connectionTimeout: 10000 # 10s; default 30s
- idleTimeout: 300000 # 5m; default 10 mins
- maxLifetime: 900000 # 15m; default 30 mins
- redis:
- host: redis.marathon.l4lb.thisdcos.directory
- rabbitmq:
- host: rabbitmq.marathon.l4lb.thisdcos.directory
- eureka:
- client:
- serviceUrl:
- defaultZone: http://localhost:8761/eureka/
- server:
- undertow:
- accesslog:
- dir: target
- enabled: true
- pattern: combined
- compression:
- enabled: true
- min-response-size: 1
- error:
- whitelabel:
- enabled: false
- # session:
- # cookie:
- # secure: true
- logging:
- pattern:
- level: 'username:%X{username:-system} %5p'
- level:
- com.pemc.crss: INFO
- com.netflix: WARN
- org.springframework.cloud: WARN
- graylog:
- host: 10.176.11.123
- crss:
- api.gateway: http://edge-server.marathon.l4lb.thisdcos.directory:8080
- security.url: ${crss.api.gateway}/uaa
- dispatch.interval: 5
- cfg:
- general:
- interval: 5
- calcValidation: false
- ams:
- invoice-date-restrict-days: 15
- due-date-restrict-days: 15
- remarks-max-length: 200
- addtl-comp-max-number-installment: 12
- # used by stl-calc and stl-inv-gen
- batch:
- partitionSize:
- amsEmf: 1500
- amsRmf: 1500
|