Posts

Showing posts from May, 2020

Introduction on Different Components of Microservices

Image
Spring Cloud Components: Configuration:  Using Spring  cloud config server . Service Discovery and Registry:  using  Eureka   server. API Gateway:  Using  Zuul API  or Spring  Cloud Gateway . Routing and messaging:  using   Feign API Tracing with request visualization:  Spring  cloud sleuth  and  Zipkin Circuit Breaker:   Hystrix . Spring Config Server:       S pring clouds config provides server and client-side support for externalized configuration in a distributed system. The default implementation of the server storage backed use git.  In another word, Spring cloud provides tools for developers to quickly build some of the common patterns in distributed system and it will enables us to quickly developed cloud-native applications. One of the  features is to maintain application configurations outside the application. ...