markdown-it demo

Spring Cloud Gateway是一個基於Spring Framework和Spring Boot的全新項目,它是一個非常強大的API網關,它旨在提供一個簡單的方式來路由請求和過濾請求。它允許您以非常靈活的方式來構建,測試和運行API網關服務。

以下是一個簡單的Spring Cloud Gateway範例(WebFlux版本),該範例將通過網關中的一個路由將請求轉發到目標服務:

  1. 首先需要在pom.xml中添加相關依賴:
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-gateway</artifactId>
</dependency>
  1. 創建一個配置類,並加上@EnableGateway註解:
@Configuration
@EnableGateway
public class GatewayConfig {
    
    @Bean
    public RouteLocator routes(RouteLocatorBuilder builder) {
        return builder.routes()
            .route("example_route", r -> r.path("/example")
                .uri("http://example.com"))
            .build();
    }
}
  1. 在application.properties中配置相關設定:
server.port=8080
  1. 啟動應用程序並訪問http://localhost:8080/example會轉發到http://example.com。

這是一個簡單的Spring Cloud Gateway範例,您可以根據實際需要進行更多的配置和定製。希望這可以幫助您開始使用Spring Cloud Gateway。


Spring Cloud Gateway 可以通過在 application.yml 文件中配置路由信息。下面是一個示例:

spring:
  cloud:
    gateway:
      routes:
        - id: example_route
          uri: https://example.com
          predicates:
            - Path=/example/**
          filters:
            - RewritePath=/example/(?<remaining>.*), /${remaining}

在這個配置中,我們定義了一個路由,id 為 example_route,將所有路徑以 /example/ 開頭的請求轉發到 https://example.com。並且使用 RewritePath 過濾器將原始路徑重新寫入轉發 URL 中。RewritePath過濾器用於重新寫入請求的路徑。在這個例子中,使用了正則表達式(?.*)來捕獲路徑中/example/後的所有部分,然後將其替換為/${remaining}。換句話說,將請求路徑中的/example/部分去除,只保留後面的部分。這個過濾器的作用是將原始請求路徑中的/example/部分重新寫入為去除這部分後的新路徑。

Fork me on GitHub