crss-worklist-app-dev.yml 937 B

123456789101112131415161718192021222324252627282930313233343536
  1. spring:
  2. crss-worklist:
  3. datasource:
  4. jdbcUrl: jdbc:postgresql://localhost:5432/crss_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_settlement
  13. username: postgres
  14. password: postgres
  15. driverClassName: org.postgresql.Driver
  16. crss-main:
  17. datasource:
  18. jdbcUrl: jdbc:postgresql://localhost:5432/crss_meterprocess
  19. username: postgres
  20. password: postgres
  21. driverClassName: org.postgresql.Driver
  22. jpa:
  23. show-sql: false
  24. generate-ddl: false
  25. properties:
  26. hibernate:
  27. dialect: org.hibernate.dialect.PostgreSQLDialect
  28. ddl-auto: none
  29. generate_statistics: true
  30. # prevent batch job from running on app start
  31. batch:
  32. job:
  33. enabled: false
  34. server:
  35. port: 8085