application-devlocal.yml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. spring:
  2. crss-stl:
  3. datasource:
  4. jdbcUrl: jdbc:postgresql://localhost:5432/crss_settlement
  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-meterprocess:
  12. datasource:
  13. jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_meterprocess
  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-metering:
  21. datasource:
  22. jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_metering
  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. crss-nmms:
  30. datasource:
  31. jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_nmms
  32. username: postgres
  33. password: postgres
  34. driverClassName: org.postgresql.Driver
  35. maxPoolSize: 5
  36. test-on-borrow: true
  37. validation-query: SELECT 1
  38. crss-dataflow:
  39. datasource:
  40. jdbcUrl: jdbc:postgresql://localhost:5432/crss_dataflow
  41. username: postgres
  42. password: postgres
  43. driverClassName: org.postgresql.Driver
  44. maxPoolSize: 20
  45. test-on-borrow: true
  46. validation-query: SELECT 1
  47. jpa:
  48. show-sql: false
  49. generate-ddl: true
  50. properties:
  51. hibernate:
  52. generate_statistics: true
  53. dialect: org.hibernate.dialect.PostgreSQL81Dialect
  54. ddl-auto: validate
  55. hbm2ddl:
  56. import_files:
  57. batch:
  58. job:
  59. enabled: true
  60. logging:
  61. level:
  62. com.pemc: DEBUG
  63. com.netflix: DEBUG
  64. org.springframework.cloud: DEBUG
  65. org.hibernate.stat: debug