crss-worklist-app-dev.yml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. spring:
  2. crss-worklist:
  3. datasource:
  4. jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=worklist
  5. username: postgres
  6. password: postgres
  7. driverClassName: org.postgresql.Driver
  8. connectionTimeout: 10000
  9. maximumPoolSize: 5
  10. crss-stl:
  11. datasource:
  12. jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=settlement
  13. username: postgres
  14. password: postgres
  15. driverClassName: org.postgresql.Driver
  16. crss-main:
  17. datasource:
  18. jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=meterprocess
  19. username: postgres
  20. password: postgres
  21. driverClassName: org.postgresql.Driver
  22. crss-registration:
  23. dataSource:
  24. jdbcUrl: jdbc:postgresql://localhost:5432/crss?currentSchema=registration
  25. username: postgres
  26. password: postgres
  27. jpa:
  28. show-sql: false
  29. generate-ddl: false
  30. properties:
  31. hibernate:
  32. dialect: org.hibernate.dialect.PostgreSQLDialect
  33. ddl-auto: none
  34. generate_statistics: true
  35. # prevent batch job from running on app start
  36. batch:
  37. job:
  38. enabled: false
  39. server:
  40. port: 8085