application-azure.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. spring:
  2. cloud:
  3. stream:
  4. bindings:
  5. output:
  6. content-type: application/json
  7. crss-registration:
  8. dataSource:
  9. jdbcUrl: jdbc:postgresql://10.64.0.4:5432/crss?currentSchema=registration
  10. username: crss_registration
  11. password: crss_registration
  12. driverClassName: org.postgresql.Driver
  13. maxPoolSize: 5
  14. test-on-borrow: true
  15. validation-query: SELECT 1
  16. crss-main:
  17. datasource:
  18. jdbcUrl: jdbc:postgresql://10.64.0.4:5432/crss?currentSchema=meterprocess
  19. username: crss_meterprocess
  20. password: crss_meterprocess
  21. driverClassName: org.postgresql.Driver
  22. maxPoolSize: 5
  23. test-on-borrow: true
  24. validation-query: SELECT 1
  25. jpa:
  26. show-sql: false
  27. hibernate:
  28. ddl-auto: none
  29. properties:
  30. hibernate:
  31. dialect: org.hibernate.dialect.PostgreSQLDialect
  32. namingStrategy: org.hibernate.cfg.ImprovedNamingStrategy
  33. hbm2ddl:
  34. auto: none
  35. temp:
  36. use_jdbc_metadata_defaults: false
  37. redis:
  38. host: redis.marathon.l4lb.thisdcos.directory
  39. port: 6379
  40. logging:
  41. level:
  42. com.pemc: debug