https://github.com/aboullaite/spring-cloud-gateway
An example of using Spring cloud gateway
https://github.com/aboullaite/spring-cloud-gateway
java microservices spring-boot
Last synced: 9 months ago
JSON representation
An example of using Spring cloud gateway
- Host: GitHub
- URL: https://github.com/aboullaite/spring-cloud-gateway
- Owner: aboullaite
- Created: 2019-01-13T22:02:20.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-13T11:20:24.000Z (about 7 years ago)
- Last Synced: 2025-04-06T08:51:12.486Z (about 1 year ago)
- Topics: java, microservices, spring-boot
- Language: Java
- Size: 88.9 KB
- Stars: 47
- Watchers: 1
- Forks: 29
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
### Spring cloud gateway example
This is a small example using Spring cloud gateway and its features! This example contains:
+ Bookstore microservice: port 8089
+ MoviesStore microservice: port 8090
+ API Gateway (Srpring Cloud gateway): port 8087
+ Service Discovery (Eureka): 8088
+ Hystrix dashboard: port 8099
You'll also need a redis instance running (on port 6379) in order to enable the request limiter of the gateway. The easiest wat is to spin up a redis instance on docker container:
` docker run --name some-redis -p 6379:6379 -d redis`
You can read more about it here: https://aboullaite.me/spring-cloud-gateway/