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 459 spring-cloud-gateway issues
Sort by recently updated
recently updated
newest added

**Describe the bug** We are creating one filter with the help of `GatewayFilterFactory`. Build is working fine but during run the code it will come up with the circular-references. ```...

waiting-for-triage

**Describe the bug** I seem to have the same problem as #2165 Start the service “test2” first, then start the gateway, and then access "/test2/hi" is no problem, the log...

waiting-for-triage

@Component public class AuthGlobalFilter implements Ordered, GlobalFilter { @Override public Mono filter(ServerWebExchange exchange, GatewayFilterChain chain) { // The code will not execute System.out.println("filter global"); return chain.filter(exchange); } @Override public int...

waiting-for-triage

https://github.com/spring-cloud/spring-cloud-gateway/pull/2698 for `3.1.x` branch. I forked and cherry-picked the commits into it. Continuing on the work by @Albertoimpl ... Current `JsonToGrpc` filter does not configure SslContext for the GRPC Netty...

waiting-for-triage

Continuing on the work by @Albertoimpl ... Current `JsonToGrpc` filter does not configure SslContext for the GRPC Netty channels, this PR fixes this, adding support for both. ```properties spring.cloud.gateway.httpclient.ssl.use-insecure-trust-manager=true ```...

waiting-for-triage

Hi Team, For specifying the maximum size of a file that is acceptable to be uploaded to the server, we specify these options in the application properties ``` spring.servlet.multipart.maxFileSize=15MB spring.servlet.multipart.maxRequestSize=15MB...

waiting-for-triage

spring boot version: 2.7.2 spring cloud gateway version: 3.1.3 **There is a api, just like below:** ``` POST /api/saveTemplate sign: xxxxxxx timestamp: xxxxxx name: test_template type:1 template_file: test.xml #a file...

waiting-for-triage

Hello, thanks to you, I am a developer who is using various modules provided by spring-cloud. Recently, I am trying to use spring-cloud-loadbalancer retry while using spring-cloud-gateway, but I don't...

waiting-for-triage

Right now, we can configure timeout (connect, response) for individual routes configured in our application.yml, but there is no provision to set timeouts for route configured via Eureka. When we...

waiting-for-triage