spring-cloud-gateway Questions
1
Solved
Trying to implement spring doc for my microservices at the Spring Cloud gateway level.
Came across these two dependencies. Want to know what is the difference between
"springdoc-openapi-ui&quo...
Madison asked 15/9, 2022 at 17:43
4
Solved
I am new to spring cloud gateway, what I want is to log incoming request to corresponding route url, For e.g. if I have following route config:
- id: route1
uri: http://localhost:8585/
predicat...
Pampuch asked 9/1, 2019 at 19:30
2
I have a spring cloud gateway application and what I want is like if there are two routes then on one route it should redirect to some external application but for other route it should forward the...
Bunchy asked 7/1, 2022 at 8:11
3
Solved
I am working on a distributed application project where there is need for rate limiting and authentication depending on the client consuming the service on an api gateway. I am wondering the best s...
Rock asked 8/6, 2022 at 14:16
0
I have a Spring Boot application with Spring Cloud Gateway using Resilience4j for circuit breaker:
implementation 'org.springframework.cloud:spring-cloud-starter-gateway'
implementation 'org.spring...
Cheerleader asked 21/7, 2022 at 12:54
1
Solved
I'm trying to create an application using NextJS + Java with Spring as my backend and I have been trying the new Spring Authorization Server alongside a BFF app with Spring Gateway and Spring Secur...
Ariew asked 4/6, 2022 at 18:52
4
Solved
I am using Spring Cloud Kubernetes + Spring Cloud Gateway(SCG) and I have some trouble to deploy my app on GKE.
SCG does not find k8s service, I still get this error:
There was an unexpected erro...
Lawley asked 21/8, 2019 at 14:48
2
Solved
I have a React application based on Typescript which is hosted on my PC.
I use Spring gateway to forward requests to another microservice. GET requests are working fine but for POST requests I get:...
Scraper asked 9/1, 2022 at 1:32
2
I'm having issues setting up CORS configuration in a spring cloud gateway app. I've set the following config to allow everything from everything:
spring:
cloud:
gateway:
globalcors:
corsConfig...
Arundinaceous asked 10/3, 2020 at 20:47
1
Solved
I would like to know if there is a recommended order range for Gateway Filters (global or not) in Spring Cloud Gateway because there are Spring Gateway filters with orders less than 1 and greater t...
Goffer asked 5/7, 2021 at 13:16
3
I created two Spring Boot applications which both will be deployed in a Kubernetes cluster. One of those apps will act as a gateway and therefore uses Spring Cloud Gateway as a dependency. Also I w...
Erzurum asked 16/5, 2019 at 14:7
2
I am trying to migrate a gateway that's working using spring-cloud-starter-netflix-zuul to Spring Cloud Gateway, and I'm running into issues with request routing.
I ran across the following docume...
Guzzle asked 12/3, 2019 at 20:26
2
Solved
I need Spring Cloud Gateway to route a request to the microservice based on either Host header or a path prefix. In any case the path prefix must be removed from the path, but only if it's set.
I'...
Jackstraws asked 3/12, 2018 at 11:43
1
Every time I create a project from spring.io a ServletInitializer file is created inside the project. I only have the spring cloud gateway dependency. Is this the reason this file exists, and if ye...
Neese asked 30/10, 2020 at 23:2
3
Solved
I'm putting a Spring Cloud Gateway in front of some existing microservices. It mostly works, but I have a websocket (SockJS) connection which (apparently) transfers huge amounts of data.
Turns out...
Glory asked 22/6, 2018 at 23:11
4
I work with Spring to create microservices. I am using Eureka for service discovery and Spring cloud gateway for routing. I would want to auto-route for the number of services I am having.
For exa...
Vanhomrigh asked 5/11, 2019 at 15:50
2
I'm using Spring Cloud Gateway with Spring 5, Spring Reactor and Netty for a project. For every request send to the gateway I want to do something just before the response is sent to the client. Th...
Gargan asked 30/4, 2018 at 13:39
1
I'm taking the first step in Spring Cloud Gateway.
During the study, I wanted to understand better the use of GlobalFilter. In the specific, I intend to have some filter applied every time for ever...
Lehmbruck asked 17/10, 2019 at 9:40
2
Solved
I am stuck in choosing One API gateway from the three API gateways mentioned below:
KrakenD (https://www.krakend.io/)
Kong (https://konghq.com/kong/)
Spring Cloud Gateway (https://cloud.spring.io...
Travesty asked 4/2, 2020 at 3:28
2
I'm having a problem with SESSION cookie being reset by Spring Cloud Gateway after a call to a resource server.
I have an Angular application, a Spring Cloud Gateway application, an external Autho...
Overexpose asked 17/8, 2019 at 20:55
2
Solved
It's my first time at Spring Cloud Gateway implementation.
I need filter every request and apply a filter validation on some paths. Following the Baeldung Custom Filters tutorial I make a simple ap...
Hildagarde asked 24/7, 2020 at 20:23
2
Solved
How to set a time-out in spring cloud gateway?
routeLocatorBuilder.routes()
.route("test-api", r -> r.path("/api/**")).uri(apiLb))
.route("test-doc", r -> r.pa...
Foulup asked 7/8, 2020 at 11:34
4
I created an API gateway for my application and it will act as a front controller for other microservices.
In my production setup I use Nginx as a reverse proxy for my gateway
The API gateway is r...
Gerrilee asked 1/4, 2019 at 7:40
0
I'm using Spring Cloud Gateway, and I have a use-case where I need to skip default-filters for a specific route.
The documentation does not say anything about this option, is there any way to achie...
Pains asked 24/11, 2020 at 12:38
2
Solved
Is it possible to use the predicate section of the spring cloud gateway config to check the header authorization, my goal is to have some basic auth on one or more endpoints
I'm using application....
Fernanda asked 19/5, 2020 at 16:36
© 2022 - 2025 — McMap. All rights reserved.