Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nhatthaiquang-agilityio/spring-zuul-routing-filtering
Routing and Filtering with Zuul
https://github.com/nhatthaiquang-agilityio/spring-zuul-routing-filtering
gateway sping-boot zuul
Last synced: 19 days ago
JSON representation
Routing and Filtering with Zuul
- Host: GitHub
- URL: https://github.com/nhatthaiquang-agilityio/spring-zuul-routing-filtering
- Owner: nhatthaiquang-agilityio
- Created: 2018-01-04T02:52:38.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-26T10:37:13.000Z (almost 7 years ago)
- Last Synced: 2024-04-16T07:09:42.393Z (9 months ago)
- Topics: gateway, sping-boot, zuul
- Language: Java
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Boot Routering and Filtering
A simple microservice application and then build a reverse proxy application that uses Netflix Zuul to forward requests to the service application. You’ll also see how to use Zuul to filter requests made through the proxy service.### Requirements
Java JDK 1.8
Maven### Usage
In a browser, visit one of the Student application’s endpoints via the Gateway application. If you’ve used the configuration shown in this guide, you can access the Student service directly at localhost:8090 and via the Gateway service at localhost:8080/student.http://localhost:8090/available
Visit one of the Student service endpoints, as localhost:8080/student/available, and you should see your request’s method logged by the Gateway application before it’s handed on to the Student application
http://localhost:8080/student/available
Zuul Gateway: an edge service application that can proxy and filter requests for microservices.
### Reference
[Routing and Filtering](https://spring.io/guides/gs/routing-and-filtering/)[Router and Filter: Zuul](https://cloud.spring.io/spring-cloud-netflix/multi/multi__router_and_filter_zuul.html)