netflix-zuul Questions

1

Solved

I am trying to implement Zuul in my SpringBoot Gradle project. I am facing some issues while running the application and I have tried almost all the ways that I could find online. Does anyone know ...
Sourdough asked 12/7, 2022 at 13:5

8

Solved

How it is possible to read a response body while using Zuul as a proxy in post filter? I am trying to call the code like this: @Component public class PostFilter extends ZuulFilter { private st...
Roryros asked 29/1, 2016 at 15:48

2

Solved

Our current project requirement is to to route some requests to third-party external api servers. For this we are using spring zuul based router service. zuul: routes test: path: /test/** servi...
Dentalium asked 16/10, 2020 at 7:41

4

I am trying microservices with eureka and zuul. And there is a problem with all requests, which take more then 1 second. As I have understood, 1 second is default hystrix timeout, and for configuri...
Eleonoreleonora asked 29/3, 2019 at 13:19

4

Solved

Why would I be getting every CORS header doubled? I am using the Zuul Proxy to have the request to a service proxied through an API gateway. I must have something misconfigured with my spring secu...

5

My application use spring-boot version 2.5.0 and spring-cloud-starter-netflix-zuul 2.2.8.RELEASE With latest spring-boot version 2.5.0, getErrorPath() API is removed from ErrorController, but lates...
Isagoge asked 23/6, 2021 at 13:22

6

I have simple services as: transactions-core-service and transactions-api-service. transactions-api-service invokes transactions-core-service to return a list of transactions. transactions-api-se...
Nitriding asked 13/2, 2016 at 6:29

2

Solved

I've faced a problem uploading big files through zuul. I'm using apache-commons file upload(https://commons.apache.org/proper/commons-fileupload/) to stream large files as well as I use zuul on th...
Trichromatism asked 3/7, 2017 at 13:57

3

Solved

I am trying to upgrade my spring boot version from 2.1.5.RELEASE to 2.5.1, so I have changed the spring cloud version from Greenwich.RELEASE to 2020.0.3 according to release train Spring Boot compa...

5

I am trying to use Zuul to redirect calls to a downstream system somewhere else. In the re-direct, I need to add in a Header with necessary data for the api receiving the redirection to process. I...
Jenisejenkel asked 26/4, 2018 at 10:29

1

What is the possible usage of ZuulFilter.run() return value? All the examples (for instance Spring example) return null. The official documentation says: Some arbitrary artifact may be returned....
Emarie asked 11/7, 2017 at 13:49

7

Solved

Startup Appplication: @SpringBootApplication @EnableZuulProxy public class ZuulServer { public static void main(String[] args) { new SpringApplicationBuilder(ZuulServer.class).web(true).run(arg...
Carpometacarpus asked 23/2, 2015 at 9:36

4

Solved

I read the articles like : What is the difference between an API-Gateway and an Edge Service?, but still not clear on what's the exact difference between the service discovery (say Eureka) and Serv...
Bunce asked 17/10, 2018 at 9:41

4

I have an application which uses Zuul Netflix as API gateway, the architecture is below: The architecture is working fine, using the the browser and postman I can access different REST endpoint ...
Earlineearls asked 4/12, 2016 at 10:19

1

Solved

I'm trying to build an Gateway API using the new Spring Boot Starter Parent 2.4.2 but, for some reason, looks like the spring-cloud-starter-netflix-zuul isn't supported anymore and doesn't work wit...
Monzon asked 27/1, 2021 at 17:16

2

I'm looking for a solution that would provide kind of data Aggregation in API Gateway. I am using spring cloud netflix zuul for API gateway. I created 3 micro services using spring boot - Catalog ...
Pontificate asked 17/8, 2016 at 10:5

1

Solved

Our services are currently using spring cloud netflix zuul as our gateway. Now we have to support websocket so we need to migrate zuul 1 to zuul 2 or spring cloud gateway. I know spring cloud tea...
Kirven asked 7/4, 2020 at 14:9

1

I have a Zuul Gateway proxy, where I check the authorization of token received from the user. Now, when this is request is passed on to other microservices to get the user-specific data, the user i...
Crossbred asked 6/9, 2018 at 19:13

1

Just wanted some clarification - within Netflix's Zuul Gateway, the RequestContext object has two methods, setSendZuulResponse and removeRouteHost. First, can somebody tell me the difference betwe...

4

Solved

I have a zuul proxy (http://localhost:8765) serving an angular web app (http://localhost:8080/app). Behind the zuul proxy there is also an oauth2 server (http://localhost:8899). The web resources ...
Abreast asked 11/2, 2016 at 16:14

1

We have a springboot application which is currently having gateway as Zuul 1. Our application is running in Springboot 2.0.0.M2. We are trying to upgrade our Zuul gateway to Zuul 2. We created a sp...
Jung asked 10/4, 2019 at 14:34

2

I understand from the documentation with the use of Netflix Zuul & Eureka (maybe Ribbon too) you can build an active load balancer. I have always used AWS ELB, ALB (ECS for container management...

3

Solved

I am trying to get a simple microservice to register to the Eureka Server and then have Zuul proxy to the microservice. I got the microservice to register to the Eureka Server. However, whenever I ...
Midge asked 20/1, 2017 at 7:25

2

I have got the below setup in which my Eureka server is running and few services created and registered with Eureka are running. All the service to service calls are happing using rest template whi...
Marlysmarmaduke asked 30/9, 2016 at 12:55

5

Solved

I am trying to use Zuul within my Spring Boot project. application.properties server.context-path=/${spring.application.name} zuul.routes.engine.path=/api/engine/** zuul.routes.engine.url=${engin...
Castora asked 20/11, 2015 at 21:33

© 2022 - 2024 — McMap. All rights reserved.