From 8ec40f6ad5f48fc336729c2a693b93dca5c9afb7 Mon Sep 17 00:00:00 2001 From: Mihhail Verhovtsov Date: Thu, 16 Jul 2020 14:37:12 +0300 Subject: [PATCH] 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 --- docs/src/main/asciidoc/sagan-index.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/main/asciidoc/sagan-index.adoc b/docs/src/main/asciidoc/sagan-index.adoc index 0401f2e0..78c6948d 100644 --- a/docs/src/main/asciidoc/sagan-index.adoc +++ b/docs/src/main/asciidoc/sagan-index.adoc @@ -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. \ No newline at end of file +To run your own gateway use the `spring-cloud-starter-gateway` dependency.