Spring Boot 4 Complete Guide · Урок

Шлюз API с Spring Cloud Gateway

Создайте шлюз API с помощью Spring Cloud Gateway для маршрутизации запросов, обеспечения безопасности и управления сквозными задачами.

Урок 3 из 411 шагов

«Шлюз API с Spring Cloud Gateway» — бесплатный урок Spring Boot 4 Complete Guide на CoddyKit. Это урок 3 из 4. Ты можешь прочитать весь урок бесплатно ниже — а потом практиковать его прямо в браузере с встроенным редактором кода и ИИ-репетитором 24/7. Это часть пути обучения Spring Boot 4 Complete Guide, и твой прогресс синхронизируется между веб-версией и приложением CoddyKit. Курс Spring Boot 4 Complete Guide содержит 4 уроков всего.

Части этого урока еще не переведены и отображаются на английском.

API Gateway: The Front Door

In a microservices architecture, you often have many small, independent services. How do client applications (like a mobile app or web browser) interact with them?

An API Gateway acts as a single, unified entry point for all client requests. Instead of clients needing to know about and call individual services, they simply communicate with the gateway.

Why Use an API Gateway?

Gateways centralize common functionalities that would otherwise be duplicated across multiple services or handled by clients. This simplifies development and enhances service management. Key benefits include:

  • Request Routing: Directing incoming requests to the correct backend microservice.
  • Security: Handling authentication and authorization at the edge.
  • Rate Limiting: Protecting services from being overwhelmed by too many requests.
  • Monitoring & Logging: Centralized collection of request metrics and logs.
  • Circuit Breaking: Improving resilience against failures in downstream services.

Introducing Spring Cloud Gateway

Spring Cloud Gateway (SCG) is a powerful, reactive API Gateway built on Spring WebFlux. It's designed for high performance and scalability, making it ideal for modern microservices.

SCG replaced the older Netflix Zuul and provides a more modern, non-blocking way to manage API traffic efficiently.

Setting Up Your Gateway Project

To start building an API Gateway, you need a Spring Boot project with specific dependencies. The core ones are:

  • spring-cloud-starter-gateway: Provides the gateway capabilities.
  • spring-boot-starter-webflux: The reactive web framework SCG is built upon.

You can easily generate a project with these dependencies using Spring Initializr.

Code: A Minimal Gateway

This is a minimal Spring Cloud Gateway application. It defines a simple route using Java configuration (an alternative to application.yml) that forwards requests from /hello to httpbin.org/get.

Try running it! Then, open your browser and access http://localhost:8080/hello. You should see a JSON response from httpbin.org.

package com.coddykit.gateway;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.gateway.route.RouteLocator;
import org.springframework.cloud.gateway.route.builder.RouteLocatorBuilder;
import org.springframework.context.annotation.Bean;

@SpringBootApplication
public class GatewayApplication {

  public static void main(String[] args) {
    SpringApplication.run(GatewayApplication.class, args);
  }

  @Bean
  public RouteLocator customRouteLocator(RouteLocatorBuilder builder) {
    return builder.routes()
      .route("hello_route", r -> r.path("/hello")
        .uri("http://httpbin.org/get"))
      .build();
  }
}

Configuring Routes with YAML

While Java configuration is useful for programmatic routes, the most common and flexible way to define routes in Spring Cloud Gateway is using application.yml or application.properties.

This allows for externalizing configuration and easier management. Each route consists of an id, a target uri, and predicates to match incoming requests.

Example application.yml snippet:

spring: cloud: gateway: routes: - id: my_service_route uri: http://localhost:8081 predicates: - Path=/api/myservice/** server: port: 8080

Request Predicates: The Matchmakers

Predicates are crucial components of a route. They are conditions that must be met for a route to be applied to an incoming request. They evaluate various aspects of the HTTP request.

Common predicates include:

  • Path=/users/**: Matches requests based on the URI path.
  • Method=GET,POST: Matches specific HTTP methods.
  • Host=*.example.com: Matches requests based on the host header.
  • Header=X-Request-Id, \d+: Matches requests with a specific header and a regex value.

Code: Routing with Path Predicate

Let's configure a route using application.yml that uses the Path predicate to forward requests starting with /backend/** to a service running on port 8081.

Place this in your src/main/resources/application.yml:

spring: cloud: gateway: routes: - id: backend_service_route uri: http://localhost:8081 predicates: - Path=/backend/** application: name: api-gateway server: port: 8080

When you access http://localhost:8080/backend/hello, the gateway will route it to http://localhost:8081/hello.

Gateway Filters: Request & Response Magic

Filters allow you to modify the incoming request or the outgoing response. They can be applied to specific routes (route-specific filters) or to all routes (global filters).

Examples of built-in filters:

  • AddRequestHeader: Adds a header to the request before sending it to the downstream service.
  • AddResponseHeader: Adds a header to the response before sending it back to the client.
  • RateLimiter: Controls the number of requests allowed per unit of time, preventing abuse.

Test Your Gateway Knowledge

Consider a Spring Cloud Gateway application configured with the following route:

spring:
  cloud:
    gateway:
      routes:
        - id: my_product_route
          uri: lb://PRODUCT-SERVICE
          predicates:
            - Path=/products/{segment}
          filters:
            - AddRequestHeader=X-Request-Source, Gateway

Which of the following statements are TRUE about this configuration?

Recap: Gateway Essentials

You've learned about the fundamental role of API Gateways in a microservices architecture and how Spring Cloud Gateway implements this pattern.

  • An API Gateway acts as a single, central entry point for clients.
  • Routes define how incoming requests are mapped to backend services.
  • Predicates are conditions that determine which requests a route applies to.
  • Filters allow you to modify requests or responses, handling cross-cutting concerns like security or rate limiting.

Mastering SCG is key to building robust and scalable microservice systems!

Можно начать бесплатно

Изучай Java с ИИ-репетитором — бесплатно

Пиши и запускай код прямо в браузере, получай мгновенную помощь от ИИ-репетитора 24/7 и продолжи учиться на сайте или в приложении.

Курсы
21
Уроки
84

Часто задаваемые вопросы

Урок «Шлюз API с Spring Cloud Gateway» бесплатный?

Да — полный текст урока «Шлюз API с Spring Cloud Gateway» бесплатно доступен здесь в веб-версии. Чтобы практиковать его интерактивно (встроенный редактор кода и ИИ-репетитор 24/7) и разблокировать остальной курс Spring Boot 4 Complete Guide, подпишись на CoddyKit PRO. Курс Spring Boot 4 Complete Guide содержит 4 уроков всего.

Чему я научусь в уроке «Шлюз API с Spring Cloud Gateway»?

Создайте шлюз API с помощью Spring Cloud Gateway для маршрутизации запросов, обеспечения безопасности и управления сквозными задачами. Ты практикуешь Spring Boot 4 Complete Guide с помощью реального кода, который запускаешь прямо в браузере, и ИИ-репетитор 24/7 отвечает на твои вопросы во время урока.

Нужен ли мне опыт, чтобы начать Spring Boot 4 Complete Guide?

Предыдущий опыт не требуется. Spring Boot 4 Complete Guide на CoddyKit структурирован для всех уровней — от новичков до продвинутых, поэтому ты можешь начать отсюда или с самого начала и учиться в своем темпе. Это урок 3 из 4.

Сколько времени занимает урок «Шлюз API с Spring Cloud Gateway»?

Большинство уроков CoddyKit занимают около 5–10 минут. Каждый из них компактный и интерактивный, поэтому ты постоянно делаешь прогресс и продолжаешь с того же места в веб-версии и приложении.

Можно ли писать и запускать код в этом уроке Spring Boot 4 Complete Guide?

Да. Каждый урок Spring Boot 4 Complete Guide включает встроенный редактор кода, поэтому ты пишешь и запускаешь реальный код прямо в браузере и получаешь моментальную обратную связь от AI — локальная установка не требуется.

Все уроки этого курса

  1. Принципы и проектирование микросервисов
  2. Обнаружение и регистрация сервисов
  3. Шлюз API с Spring Cloud Gateway
  4. Централизованная конфигурация с Spring Cloud Config
← Назад к Spring Boot 4 Complete Guide