Skip to content
Ismail Hossain Raju edited this page Sep 30, 2018 · 7 revisions

Welcome to the microservicesEurekaRibbon wiki!

Test:

  1. http://localhost:8100/currency-converter-feign/from/EUR/to/INR/quantity/1000 (with load balance)
  2. http://localhost:8100/currency-converter/from/EUR/to/INR/quantity/1000 (without load balance)

Reference:

  1. http://www.springboottutorial.com/creating-microservices-with-spring-boot-part-1-getting-started

Docker Spring boot Reference:

  1. https://ropenscilabs.github.io/r-docker-tutorial/04-Dockerhub.html

> ##DOCKER IMAGE CREATE COMMAND > ==============================

> $ docker build -f Dockerfile -t <image name> . > $ docker images [to check if your images is built or not] > $ docker run -p 8085:8085 <image name> [first one is service port, second one is internal port]

Zipkin:

zipkinServer: Docker run -d -p 9411:9411 openzipkin/zipkin

Reference: https://howtodoinjava.com/spring-cloud/spring-cloud-zipkin-sleuth-tutorial/

Clone this wiki locally