This repository contains the coding part of 'Microservices with Mo'. A tutorial series about creating an microservice architecture with Spring Boot.
Here are the links to all parts of the series:
- Intro
 - Part 1: Setting up docker
 - Part 2: The architecture
 - Part 3: The counter microservice
 - Part 4: The configuration microservice
 - Part 5: The registry microservice
 - Part 6: The gateway microservice
 
The architecture consists / will consist of following services:
- counterservice
 - configservice
 - servicediscovery
 - adminservice
 - gatewayservice
 
git clone https://github.com/eiselems/spring-boot-microservices.git && cd spring-boot-microservices
mvn clean package -DskipTests && docker-compose up --build
Access http://localhost:9999/api/cs/count and refresh a few times to see the counter increase. You also can access the counterservice itself directly at http://localhost:8080/count.