spring-cloud-gateway
spring-cloud-gateway copied to clipboard
An API Gateway built on Spring Framework and Spring Boot providing routing and more.
Details added in #2694
**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. ```...
**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...
@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...
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...
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 ```...
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...
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...
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...
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...