diff --git a/1.0.x/images/callouts/1.png b/1.0.x/images/callouts/1.png new file mode 100644 index 00000000..7d473430 Binary files /dev/null and b/1.0.x/images/callouts/1.png differ diff --git a/1.0.x/images/callouts/2.png b/1.0.x/images/callouts/2.png new file mode 100644 index 00000000..5d09341b Binary files /dev/null and b/1.0.x/images/callouts/2.png differ diff --git a/1.0.x/images/callouts/3.png b/1.0.x/images/callouts/3.png new file mode 100644 index 00000000..ef7b7004 Binary files /dev/null and b/1.0.x/images/callouts/3.png differ diff --git a/1.0.x/index.html b/1.0.x/index.html index c1615d2c..55d35ba0 100644 --- a/1.0.x/index.html +++ b/1.0.x/index.html @@ -90,7 +90,7 @@ $(addBlockSwitches);
-

1.0.2.BUILD-SNAPSHOT

+

1.0.3.BUILD-SNAPSHOT

diff --git a/1.0.x/multi/images/callouts/1.png b/1.0.x/multi/images/callouts/1.png new file mode 100644 index 00000000..7d473430 Binary files /dev/null and b/1.0.x/multi/images/callouts/1.png differ diff --git a/1.0.x/multi/images/callouts/2.png b/1.0.x/multi/images/callouts/2.png new file mode 100644 index 00000000..5d09341b Binary files /dev/null and b/1.0.x/multi/images/callouts/2.png differ diff --git a/1.0.x/multi/images/callouts/3.png b/1.0.x/multi/images/callouts/3.png new file mode 100644 index 00000000..ef7b7004 Binary files /dev/null and b/1.0.x/multi/images/callouts/3.png differ diff --git a/1.0.x/multi/multi_pr01.html b/1.0.x/multi/multi_pr01.html index cc0e2486..a42eaae2 100644 --- a/1.0.x/multi/multi_pr01.html +++ b/1.0.x/multi/multi_pr01.html @@ -1,3 +1,3 @@ -

1.0.2.BUILD-SNAPSHOT

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.

\ No newline at end of file +

1.0.3.BUILD-SNAPSHOT

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.

\ No newline at end of file diff --git a/1.0.x/single/images/callouts/1.png b/1.0.x/single/images/callouts/1.png new file mode 100644 index 00000000..7d473430 Binary files /dev/null and b/1.0.x/single/images/callouts/1.png differ diff --git a/1.0.x/single/images/callouts/2.png b/1.0.x/single/images/callouts/2.png new file mode 100644 index 00000000..5d09341b Binary files /dev/null and b/1.0.x/single/images/callouts/2.png differ diff --git a/1.0.x/single/images/callouts/3.png b/1.0.x/single/images/callouts/3.png new file mode 100644 index 00000000..ef7b7004 Binary files /dev/null and b/1.0.x/single/images/callouts/3.png differ diff --git a/1.0.x/single/spring-cloud-gateway.html b/1.0.x/single/spring-cloud-gateway.html index f53530eb..a23ea992 100644 --- a/1.0.x/single/spring-cloud-gateway.html +++ b/1.0.x/single/spring-cloud-gateway.html @@ -1,6 +1,6 @@ - Spring Cloud Gateway

Spring Cloud Gateway


Table of Contents

1. How to Include Spring Cloud Gateway
2. Building a Gateway Using Spring MVC

1.0.2.BUILD-SNAPSHOT

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.

1. How to Include Spring Cloud Gateway

To include Spring Cloud Gateway in your project add a dependency with group org.springframework.cloud and artifact id spring-cloud-gateway-mvc. See the Spring Cloud Project page for details on setting up your build system with the current Spring Cloud Release Train.

2. Building a Gateway Using Spring MVC

Spring Cloud Gateway provides a utility object called ProxyExchange which you can use inside a regular Spring MVC handler as a method parameter. It supports basic downstream HTTP exchanges via methods that mirror the HTTP verbs, or forwarding to a local handler via the forward() method.

Example (proxying a request to "/test" downstream to a remote server):

@RestController
+   Spring Cloud Gateway

Spring Cloud Gateway


1.0.3.BUILD-SNAPSHOT

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.

1. How to Include Spring Cloud Gateway

To include Spring Cloud Gateway in your project add a dependency with group org.springframework.cloud and artifact id spring-cloud-gateway-mvc. See the Spring Cloud Project page for details on setting up your build system with the current Spring Cloud Release Train.

2. Building a Gateway Using Spring MVC

Spring Cloud Gateway provides a utility object called ProxyExchange which you can use inside a regular Spring MVC handler as a method parameter. It supports basic downstream HTTP exchanges via methods that mirror the HTTP verbs, or forwarding to a local handler via the forward() method.

Example (proxying a request to "/test" downstream to a remote server):

@RestController
 @SpringBootApplication
 public class GatewaySampleApplication {
 
diff --git a/1.0.x/spring-cloud-gateway.xml b/1.0.x/spring-cloud-gateway.xml
index 6f162f3e..3b71f85b 100644
--- a/1.0.x/spring-cloud-gateway.xml
+++ b/1.0.x/spring-cloud-gateway.xml
@@ -8,7 +8,7 @@
 
 
 
-1.0.2.BUILD-SNAPSHOT
+1.0.3.BUILD-SNAPSHOT
 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.