Creating our first route with Spring Cloud Gateway

Our Gateway is running. Before we start the real routes for our Airline application, let's try to use some fake routes to test the Spring Cloud Gateway behaviors. We will use the https://httpbin.org/ site, which helps us to test some routes.

Let's create a class with the @Configuration annotation to provide the routes for the Spring Container. Let's create a package called springfive.airline.gateway.infra.route, then create the following class:

package springfive.airline.gateway.infra.route;import java.util.function.Function;import org.springframework.cloud.gateway.route.RouteLocator;import org.springframework.cloud.gateway.route.builder.PredicateSpec;import org.springframework.cloud.gateway.route.builder.RouteLocatorBuilder ...

Get Spring 5.0 By Example now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.