spring-cloud-gateway
spring-cloud-gateway copied to clipboard
An API Gateway built on Spring Framework and Spring Boot providing routing and more.
**Describe the bug** ``` 2023.0.5 ``` **Sample** ```java @Bean public HttpClientCustomizer httpClientCustomizer() { return httpClient -> httpClient.protocol( HttpProtocol.H2, HttpProtocol.H2C, HttpProtocol.HTTP11 ); } ```
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...
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...
**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...
**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...
**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...
_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...
**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...
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...
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 ```...