https://github.com/techguy-bhushan/spring-cloud
sample app: Spring cloud config, spring cloud Netflix
https://github.com/techguy-bhushan/spring-cloud
netflix-eureka netflix-hystrix netflix-ribbon netflix-zuul spring-cloud
Last synced: about 2 months ago
JSON representation
sample app: Spring cloud config, spring cloud Netflix
- Host: GitHub
- URL: https://github.com/techguy-bhushan/spring-cloud
- Owner: techguy-bhushan
- Created: 2017-09-08T19:11:37.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-10T09:05:24.000Z (almost 8 years ago)
- Last Synced: 2025-03-29T23:32:13.922Z (3 months ago)
- Topics: netflix-eureka, netflix-hystrix, netflix-ribbon, netflix-zuul, spring-cloud
- Language: Java
- Homepage:
- Size: 26.4 KB
- Stars: 2
- Watchers: 0
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Service Registration and Discovery
Setup a Netflix Eureka service registry and then build a client that both registers itself with the registry and uses it to resolve its own host. A service registry is useful because it enables client-side load-balancing and decouples service providers from consumers without the need for DNS.# Spring Cloud Config
Spring Cloud Config is Spring’s client/server approach for storing and serving distributed configurations across multiple applications and environments.# Routing and Filtering
process of routing and filtering requests to a microservice application using the Netflix Zuul edge service library.
# Client Side Load Balancing
Process of providing client-side load balancing for a microservice application using Netflix Ribbon.
# Circuit Breaker
Process of applying circuit breakers to potentially-failing method calls using the Netflix Hystrix fault tolerance library.