项目作者: RitreshGirdhar

项目描述 :
This repo will help you in implementing micro-services using spring cloud - Netflix oss stack.
高级语言: Java
项目地址: git://github.com/RitreshGirdhar/Microservices-SpringCloud.git


Microservices-SpringCloud

Here i am giving you demo of ideal microservice architecture with running sample code.

Components

  1. * Edge Services - Gateway -> ZUUL
  2. * Service Registry -> ServiceRegistry -> Eureka
  3. * Configuration -> Config -> Cloud Configuration.
  4. * Rest Apis -> MS1,MS2 -> Spring rest apis

Gateway

  1. # Currently , i am using ZUUL , once Spring cloud gateway get stable we move to that.
  2. # Gateway pointing to ServiceRegistry to discover the new microService in the environment
  3. # Gateway also point to Config to get the dynamic routing

Service Registry

  1. # Independent Service , i am using eureka here to manage registry.

Config

  1. # Independent Service
  2. # The thing which are missing in this currently , git monitoring webhook will deploy it soon.
  3. # Currently config reading from ~/tmp/config git directory

MS1

  1. # Simple MicroService with 2 api /v1/ & /message
  2. # Registered with Eureka
  3. # pointing to cloud for fetching configuration
  4. # Zipkin enable for tracing, in log you can check track id & span id

MS2

  1. # Simple MicroService with 1 api /v1/
  2. # Registered with Eureka
  3. # pointing to cloud for fetching configuration
  4. # Zipkin enable for tracing, in log you can check track id & span id

Trace & Monitoring

  1. # In each microservice sleuth is enable which help in tracing the request
  2. # and Zipkin Server is running on one instance and all microservice & gateway pointing to zipkin base url.

I have enable docker for easy deployment and maintainence.
You can find the above docker images : https://hub.docker.com/u/ritreshgirdhar/
https://store.docker.com/community/images/ritreshgirdhar/serviceregistry
https://store.docker.com/community/images/ritreshgirdhar/config
https://store.docker.com/community/images/ritreshgirdhar/ms1
https://store.docker.com/community/images/ritreshgirdhar/ms2
https://store.docker.com/community/images/ritreshgirdhar/ms3
https://store.docker.com/community/images/ritreshgirdhar/gateway

Running Demo, (pardon if the below servers are down, as i am using them for another pocs.)