application-devlocal.yml 2.2 KB

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