application.yml 884 B

123456789101112131415161718192021222324252627282930313233
  1. spring:
  2. crss-main:
  3. datasource:
  4. jdbcUrl: jdbc:postgresql://localhost:5432/crss_meterprocess
  5. username: postgres
  6. password: postgres
  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://localhost:5432/crss_metering
  14. username: postgres
  15. password: postgres
  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://localhost:5432/crss_reg
  23. username: postgres
  24. password: postgres
  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. logging:
  32. level:
  33. com.pemc: debug