Advertisement
Guest User

Untitled

a guest
Jan 31st, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. # reservation service config
  2.  
  3. message=Spring Cloud Config: Reservation Service\n
  4.  
  5. # h2 server database config
  6. spring.datasource.url=jdbc:h2:tcp://localhost/~/reservationdb
  7. spring.datasource.username=dbuser
  8. spring.datasource.password=dbpass
  9. spring.datasource.driver-class-name=org.h2.Driver
  10. spring.h2.console.enabled=true
  11.  
  12. # spring cloud stream / redis
  13. spring.cloud.stream.bindings.input=reservations
  14. spring.redis.host=192.168.99.100
  15. spring.redis.port=6379
  16.  
  17. # zipkin / spring cloud sleuth
  18. spring.zipkin.host=192.168.99.100
  19. spring.zipkin.port=9410
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement