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** I'm trying to configure retry logic in SCG to retry failed requests on the next available instance provided by Spring Cloud LoadBalancer. I’ve added a Retry filter...
**Is your feature request related to a problem? Please describe.** I think there should be documentation providing reasons for why one would choose the MVC over the WebFlux variant or...
Fixes https://github.com/spring-cloud/spring-cloud-gateway/issues/3860 Another notable changes: - renamed `bundle` to `sslBundle` - instead the type `SslProvider.ProtocolSslContextSpec` use `SslProvider.GenericSslContextSpec` because this version of `SslContextSpec.sslContext()` method is [deprecated](https://projectreactor.io/docs/netty/release/api/reactor/netty/tcp/SslProvider.SslContextSpec.html#sslContext-reactor.netty.tcp.SslProvider.ProtocolSslContextSpec-).
**Describe the bug** #2981 introduced `SslBundle` support which BTW a really nice feature. However `SslOptions` of the bundle is not honored by the implementation. E.g. the gateway user would like...
after deploying the gateway service, it works fine initially. However, after approximately 3 hours, it stops forwarding requests to downstream services. The gateway itself continues to respond to endpoint calls,...
I have some micro services build via Go, these call each other via gRPC, now I want to found a gateway like spring cloud gateway, I receive a http rest...
Hello, I'm having some latency issues with my **SCG MVC**, I'm running on 4.3.0, latency is pretty high in most of the requests that are routed through the gateway, the...
**Describe the bug** In the case of a client doesn't send the `Content-Length` header in advance, the gateway's RequestSize filter doesn't actually filter for the request body size, and the...
Explain that the `RequestSize` filter only checks the `Content-Length` header (if present), and never the length of the actual request body.