application-devlocal.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. # for removal after ITER 7 stl testing
  12. crss-meterprocess:
  13. datasource:
  14. jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_meterprocess
  15. username: postgres
  16. password: postgres
  17. driverClassName: org.postgresql.Driver
  18. maxPoolSize: 5
  19. test-on-borrow: true
  20. validation-query: SELECT 1
  21. crss-main:
  22. datasource:
  23. jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_meterprocess
  24. username: postgres
  25. password: postgres
  26. driverClassName: org.postgresql.Driver
  27. maxPoolSize: 5
  28. test-on-borrow: true
  29. validation-query: SELECT 1
  30. crss-metering:
  31. datasource:
  32. jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_metering
  33. username: postgres
  34. password: postgres
  35. driverClassName: org.postgresql.Driver
  36. maxPoolSize: 5
  37. test-on-borrow: true
  38. validation-query: SELECT 1
  39. crss-nmms:
  40. datasource:
  41. jdbcUrl: jdbc:postgresql://localhost:5432/stl_crss_nmms
  42. username: postgres
  43. password: postgres
  44. driverClassName: org.postgresql.Driver
  45. maxPoolSize: 5
  46. test-on-borrow: true
  47. validation-query: SELECT 1
  48. crss-dataflow:
  49. datasource:
  50. jdbcUrl: jdbc:postgresql://localhost:5432/crss_dataflow
  51. username: postgres
  52. password: postgres
  53. driverClassName: org.postgresql.Driver
  54. maxPoolSize: 20
  55. test-on-borrow: true
  56. validation-query: SELECT 1
  57. jpa:
  58. show-sql: false
  59. generate-ddl: true
  60. properties:
  61. hibernate:
  62. generate_statistics: false
  63. dialect: org.hibernate.dialect.PostgreSQL81Dialect
  64. ddl-auto: validate
  65. hbm2ddl:
  66. import_files:
  67. batch:
  68. job:
  69. enabled: true
  70. redis:
  71. host: localhost
  72. port: 6379
  73. logging:
  74. level:
  75. com.pemc: DEBUG
  76. com.netflix: DEBUG
  77. org.springframework.cloud: DEBUG
  78. org.hibernate.stat: debug