• Stars
    star
    138
  • Rank 263,738 (Top 6 %)
  • Language
    Java
  • Created about 7 years ago
  • Updated about 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

This repo is part of a tutorial about writing microservices using Spring Boot

spring-boot-microservices

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:

The architecture consists / will consist of following services:

  • counterservice
  • configservice
  • servicediscovery
  • adminservice
  • gatewayservice

How to run

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.