Advertisement
Guest User

Untitled

a guest
Jun 21st, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. #
  2. # Spring Service Configuration
  3. #
  4. server:
  5. port: 8080
  6.  
  7. #
  8. # Microservice Service Registration
  9. #
  10. microservice:
  11. basePath: services
  12. server:
  13. name: entitlement/common/api/v2
  14.  
  15. #
  16. # General Information
  17. #
  18. info:
  19. build:
  20. artifact: @project.artifactId@
  21. name: @project.name@
  22. description: @project.description@
  23. version: @project.version@
  24.  
  25. #
  26. # Zookeeper Connection
  27. #
  28. zookeeper:
  29. connectionString: localhost:2181
  30. retry:
  31. wait: 1000
  32. count: 3
  33.  
  34.  
  35. #
  36. # MongoDB Connection
  37. #
  38. mongo:
  39. connectionString: localhost:27017
  40. db: entitlements_v2
  41. user: root
  42. password: Change1t
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement