spring-cloud-gateway icon indicating copy to clipboard operation
spring-cloud-gateway copied to clipboard

An API Gateway built on Spring Framework and Spring Boot providing routing and more.

Results 619 spring-cloud-gateway issues
Sort by recently updated
recently updated
newest added

**Describe the bug** ``` 2023.0.5 ``` **Sample** ```java @Bean public HttpClientCustomizer httpClientCustomizer() { return httpClient -> httpClient.protocol( HttpProtocol.H2, HttpProtocol.H2C, HttpProtocol.HTTP11 ); } ```

waiting-for-triage

I have one websocket service that can be connected via ws://localhost:8080/poc/ws1. I have created Spring coud gateway which is hosted in localhost:7070 When I use below conguration, I could able...

waiting-for-triage

Hi Folks, I am using Spring boot starter -3.4.4 and Spring cloud dependencies version 2024.0.1. I have created two routes in application.yaml: 1. route 1 is where I want to...

waiting-for-triage

**version** spring bood 3.2.7 spring cloud 2023.0.1 jdk 21 -server -Xmx8192m -Xms8192m -XX:MaxDirectMemorySize=6g -XX:+UseG1GC -XX:MaxGCPauseMillis=200 -XX:InitiatingHeapOccupancyPercent=45 -XX:ParallelGCThreads=7 -XX:ConcGCThreads=7 -Dreactor.netty.pool.leasingStrategy=lifo **Describe the bug** QPS from 8K-11K every day no increase in...

waiting-for-triage

**Describe the bug** Please provide details of the problem, including the version of Spring Cloud that you are using. i wan't degrade to another route when invoke error with specify...

waiting-for-triage

**Describe the bug** Starting from Spring Cloud Gateway 4.2.1, the default behavior for handling multipart requests has changed. If `servlet.multipart.enabled: true` is not explicitly set, this setting is disabled by...

waiting-for-triage

_TL;DR_: When a Spring Gateway application detects that a cloud platform is present the forwarding behavior changes in potentially a dangerous way. **The bug** We recently upgraded our Spring Cloud...

in progress

**Describe the bug** Using `spring-boot-starter-gateway` with `3.3.5` spring boot version and `2023.0.3` spring cloud version, everything works as expected and all of our requests are routed. We have discovered upgrading...

feedback-provided

I am using the latest version of the following dependencies: ```xml org.springframework.boot spring-boot-starter-parent 3.4.3 [...] org.springframework.boot spring-boot-starter-web org.springframework.cloud spring-cloud-starter-gateway org.springframework.boot spring-boot-starter-actuator org.springdoc springdoc-openapi-starter-webmvc-ui 2.8.5 ``` And the following configuration in...

feedback-provided

Add the feature of using temp file as intermediaries when forwarding large requests, which can effectively solve the OOM, and added two configs to control it: ``` spring.cloud.gateway.mvc.file-buffer-enabled spring.cloud.gateway.mvc.file-buffer-size-threshold ```...

waiting for feedback