spring-cloud-gateway
spring-cloud-gateway copied to clipboard
An API Gateway built on Spring Framework and Spring Boot providing routing and more.
Component Version - Spring Cloud version: 2020.0.4 - Spring Gateway version: 3.0.4 - Spring Boot version: 2.5.5 - Reactor core versoin: 3.4.10 - Reactor netty core: 1.0.11 We're using Spring...
This PR resolves #2656 by adding the Forwarded-by header to the request. It can be disabled through configuration (because of security issues or so).
Configuring Default Events in spring-security. According to the documentation on page: https://docs.spring.io/spring-security/reference/servlet/authentication/events.html it is possible to configure a catch all event. However, the referenced class GenericAuthenticationFailureEvent does not seem to...
When i add "spring-cloud-starter-netflix-eureka-client",then SCG add RouteRefreshListener,which refresh routes definition automatically by publishing heartbeat event,is that problem,caus i don't want to refersh routes definition every heartbeat!
This PR fixes a bug where `XForwardedRemoteAddressResolver` did not split IP addresses as expected when `X-Forwarded-For` was only separated by commas(without whitespace). eg: ```text X-Forwarded-For: 0.0.0.1,0.0.0.2,0.0.0.3 ``` The current implementation...
make GatewayFilter created by GatewayFilterFacotory supports setting different order for each route.
the rateLimiter GatewayFilter was spawned by RequestRateLimiterGatewayFilterFactory, but I noticed I can't specify the order of it unless I overwrite it and wrap it into a OrderedGatewayFilter, even though overwrite...