Document that is SCGW is built on top of WebFlux rather than MVC.

The statement on spring.io that "This project provides a library for building an API Gateway on top of Spring MVC." seems to be misleading. Despite there being a subproject that uses Spring MVC, the gateway part that is widely known (e.g. via Spring Cloud Starter Gateway) uses WebFlux.

Fixes gh-1841
This commit is contained in:
Mihhail Verhovtsov
2020-07-16 14:37:12 +03:00
committed by spencergibb
parent 5ee09c2667
commit 8ec40f6ad5

View File

@@ -1,4 +1,4 @@
This project provides a library for building an API Gateway on top of Spring MVC. Spring Cloud Gateway aims to provide a simple, yet effective way to route to APIs and provide cross cutting concerns to them such as: security, monitoring/metrics, and resiliency.
This project provides a library for building an API Gateway on top of Spring WebFlux. Spring Cloud Gateway aims to provide a simple, yet effective way to route to APIs and provide cross cutting concerns to them such as: security, monitoring/metrics, and resiliency.
## Features
@@ -43,4 +43,4 @@ public class DemogatewayApplication {
}
```
To run your own gateway use the `spring-cloud-starter-gateway` dependency.
To run your own gateway use the `spring-cloud-starter-gateway` dependency.