0Pricing
API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) · Lekcja

Definiowanie tras i predykatów

Nauczą się Państwo definiować dynamiczne trasy za pomocą predykatów, takich jak Path, Host i Method, aby kierować żądania do konkretnych usług.

Definiowanie tras i predykatów to bezpłatna lekcja API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) na CoddyKit. To lekcja 3 z 4. Możesz przeczytać całą lekcję poniżej za darmo — a potem ćwiczyć ją interaktywnie w przeglądarce z wbudowanym edytorem kodu i tutorem AI dostępnym 24/7. To część ścieżki edukacyjnej API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway), a Twój postęp synchronizuje się między webem a aplikacją CoddyKit. Kurs API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) zawiera 4 lekcji w sumie.

Części tej lekcji nie zostały jeszcze przetłumaczone i są wyświetlane po angielsku.

Routing with API Gateways

Welcome! In a microservices architecture, clients don't talk directly to every service. Instead, they interact with an API Gateway.

This gateway acts as a single entry point, directing incoming requests to the correct backend service. This process is called routing.

What Are Predicates?

In Spring Cloud Gateway, predicates are key to routing. Think of them as 'conditions' or 'rules'.

  • A predicate evaluates to true or false.
  • If a predicate (or set of predicates) for a route evaluates to true, the gateway forwards the request using that route.
  • If false, the gateway tries the next route.

Gateway Project Foundation

Routes are typically configured in your Spring Boot application's application.yml or application.properties file. Here's a minimal Spring Boot application that *could* host our gateway configuration. The routing logic itself will go into the YAML.

You can run this basic app to see it working:

package com.coddykit.gateway;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication
@RestController
public class GatewayApplication {

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

  @GetMapping("/test-gateway")
  public String testGateway() {
    return "Hello from Gateway!";
  }
}

Basic Route Structure

A route in Spring Cloud Gateway needs three main things:

  • id: A unique identifier for the route.
  • uri: The URI of the backend service to which requests will be forwarded.
  • predicates: A list of conditions that must be met for this route to activate.

We'll primarily define these in application.yml.

The Path Predicate

The Path predicate is one of the most common. It matches the request URI path against a specified pattern.

  • You can use wildcards like * (matches one path segment) and ** (matches multiple path segments).
  • For example, /users/* matches /users/1 but not /users/admin/1.
  • /users/** matches both /users/1 and /users/admin/1.

Path Predicate in Action

Here's how you'd configure a route using the Path predicate to send all requests starting with /api/users to a backend user-service:

spring:
  cloud:
    gateway:
      routes:
        - id: user_service_route
          uri: http://localhost:8081 # Your backend user service
          predicates:
            - Path=/api/users/**

The Host Predicate

The Host predicate matches requests based on the hostname in the request header.

  • This is useful for routing requests from different domains or subdomains to specific services.
  • You can also use wildcards here, like *.example.com to match any subdomain of example.com.

Host Predicate Example

Let's say you want to route all requests coming from api.mycompany.com to a specific backend service. Here's how:

spring:
  cloud:
    gateway:
      routes:
        - id: api_domain_route
          uri: http://localhost:8082 # Your backend API service
          predicates:
            - Host=api.mycompany.com

The Method Predicate

The Method predicate matches requests based on their HTTP method (also known as HTTP verb).

  • Common methods include GET, POST, PUT, DELETE, and PATCH.
  • This allows you to direct different types of operations (e.g., reading vs. creating data) to distinct backend endpoints or services.

Method Predicate Example

To ensure only POST requests to /products are routed to a specific service, and other methods are handled elsewhere:

spring:
  cloud:
    gateway:
      routes:
        - id: create_product_route
          uri: http://localhost:8083 # Service for creating products
          predicates:
            - Path=/products
            - Method=POST

Predicate Power Check

You've learned about Path, Host, and Method predicates. Now, let's test your understanding!

Recap: Routes & Predicates

Great job! You've learned the fundamentals of defining routes and using predicates in Spring Cloud Gateway.

  • Routes direct traffic to backend services.
  • Predicates are the conditions (like Path, Host, Method) that determine if a route matches.
  • Multiple predicates on a single route act as an AND condition.

This powerful combination allows for flexible and intelligent traffic management in your microservices.

Często zadawane pytania

Czy lekcja „Definiowanie tras i predykatów” jest bezpłatna?

Tak — pełny tekst „Definiowanie tras i predykatów” jest dostępny za darmo tutaj w sieci. Aby ćwiczyć ją interaktywnie (wbudowany edytor kodu i tutor AI dostępny 24/7) i odblokować resztę kursu API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway), przejdź na CoddyKit PRO. Kurs API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) zawiera 4 lekcji w sumie.

Co nauczysz się w „Definiowanie tras i predykatów”?

Nauczą się Państwo definiować dynamiczne trasy za pomocą predykatów, takich jak Path, Host i Method, aby kierować żądania do konkretnych usług. Ćwiczysz API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) z praktycznym kodem, który uruchamiasz bezpośrednio w przeglądarce, a tutor AI dostępny 24/7 odpowiada na Twoje pytania podczas pracy nad lekcją.

Czy potrzebuję doświadczenia, aby zacząć API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)?

Nie wymagamy żadnego doświadczenia. API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) w CoddyKit jest strukturyzowany dla początkujących i zaawansowanych użytkowników, więc możesz zacząć tutaj lub od początku i uczyć się w swoim tempie. To lekcja 3 z 4.

Ile czasu zajmuje lekcja „Definiowanie tras i predykatów”?

Większość lekcji CoddyKit trwa około 5–10 minut. Każda lekcja to mały, interaktywny krok, dzięki czemu robisz systematyczne postępy i zawsze wracasz dokładnie do tego samego miejsca — na webie i w aplikacji.

Czy mogę pisać i uruchamiać kod w tej lekcji API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)?

Tak. Każda lekcja API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway) zawiera wbudowany edytor kodu, więc piszesz i uruchamiasz prawdziwy kod bezpośrednio w przeglądarce i od razu otrzymujesz sprzężenie zwrotne od AI — bez konfiguracji na komputerze.

Wszystkie lekcje w tym kursie

  1. Brama a tradycyjne mikrousługi
  2. Konfiguracja podstawowego projektu bramy
  3. Definiowanie tras i predykatów
  4. Zrozumienie podstaw reaktywnych
← Powrót do API Gateway & Reverse Proxy (Nginx + Spring Cloud Gateway)