application-azure.yml 1.3 KB

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