netflix-zuul Questions

3

We currently have a direct Websocket connection that goes to a backend webservice from our UI Application. Now when we are trying to do the same through Zuul(ApiGateway) we are not able to connect ...
Supercharge asked 13/9, 2016 at 14:34

0

I want to understand the technical differences between Netflix Zuul2 and Spring Cloud Gateway. Spring Cloud Gateway is async so is Zuul2 Both support Http2 Both support Route filter (functional ro...
Stilbite asked 25/8, 2020 at 6:56

7

Solved

I have a scenario in Zuul where the service that the URL is routed too might be down . So the reponse body gets thrown with 500 HTTP Status and ZuulException in the JSON body response. { "timesta...

4

Im using microservice in kubernete and docker and I got an UnknownHostException when Zuul (gateway) forward request data to service I can't ping to service container by pod name (but when i use doc...
Philo asked 28/5, 2019 at 4:45

4

I am trying to implement the above architecture in the workflow with Spring Boot. Web client makes a request to Resource Server (Microservices Endpoints) through Zuul Proxy. Zuul Proxy redirect...

4

Solved

I am facing a problem with spring cloud Zuul proxy. I hace two microservices configured, up and running. I have a cookie in my web browser and I am using Zuul as an API Gateway, When I hit Zuul to ...
Colic asked 23/5, 2016 at 17:20

4

I have a spring-boot application with 4 microservices, eureka server and a centralized API gateway. All external traffic is coming via my API gateway to my microservices. My API gateway (Zuul...

1

Solved

There is a simple proxy: @EnableZuulProxy @SpringBootApplication public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } @Bean pu...
Kidd asked 4/7, 2020 at 17:0

2

Solved

How to make Zuul dynamic routing based on HTTP method (GET/POST/PUT...)? For example, when you need to route the POST request to the different host instead of the default one described in 'zuul.rou...
Tania asked 17/12, 2017 at 15:26

3

Solved

I have been working with spring and now would like to learn spring boot and microservices. I understand what microservice is all about and how it works. While going through docs i came across many ...

2

Solved

I'm configuring a Spring Cloud (Angel.SR6) application using the Zuul reverse proxy utility, in order to hide the internal service ports. My zuul (edge) service is published in the 8765 port and my...
Complemental asked 19/5, 2016 at 16:35

3

Solved

Context: I'm creating a cloud platform to support multiple applications with SSO. I'm using Keycloak for authentication and Netflix Zuul for authorization (API Gateway) thru Keycloak Spring Securit...

2

Solved

We've used Zuul as API gateway for a while in Microservices scene, recently we decided to move to Kubernetes and choose a more cloud native way. After some investigation and going through the Isti...
Gravimetric asked 7/4, 2019 at 3:24

3

Solved

We have an infrastructure with service discovery and load balancing (i.e. server side with STM and weblogic cluster). Now we are in the process of refactoring into micro-services. We would need an ...
Steger asked 2/12, 2015 at 6:42

3

For microservices, the common design pattern used is API-Gateway. I am a bit confused about its implementation and implications. My questions/concerns are as follows: Why other patterns for micro...
Translocation asked 4/2, 2019 at 11:28

1

Solved

I am building a spring boot microservices application but getting this error when I open in intellij idea. Unnecessarily replacing a task that does not exist is not supported. Use create() or reg...
Lendlease asked 23/12, 2019 at 9:8

2

Solved

When working with Spring Boot to build micro-services its very easy to write extensive and very readable integration tests and mock remote service requests with MockRestServiceServer. Is there a w...

2

I have a microservice that is protected using oAuth2 called country-service. When I directly send a request to this service including my JWT bearer token everything works: server: port: 8081 s...
Sapsucker asked 25/6, 2016 at 15:54

8

Solved

I am using a front end Spring Cloud application (micro service) acting as a Zuul proxy (@EnableZuulProxy) to route requests from an external source to other internal micro services written using sp...
Singley asked 6/3, 2015 at 17:26

3

Solved

Hi I want to delete the zuul route which has been created dynamically. Im not using cloud server. Im able to add the routes using discoveryclientroutelocator. But I don't find an option to de-regi...
Tetanic asked 12/3, 2019 at 10:40

3

When sending a request via Zuul to a client, Zuul seems to change the query String. More specifically, if the client should receive an url-encoded query String, Zuul decodes the query String once. ...
Choreograph asked 7/4, 2016 at 12:13

1

Solved

My application has microservices behind (spring) gateway with zuul proxy. There is also internal (spring) oauth2 authorization server. I want to implement client_credentials grant type for my micro...

2

Solved

APPLICATION FAILED TO START Description: The bean 'counterFactory', defined in class path resource [org/springframework/cloud/netflix/zuul/ZuulServerAutoConfiguration$ZuulCounterFactoryConfig...
Witchy asked 21/8, 2018 at 16:33

6

Solved

I'm Zuul as edge server. so all request pass by this edge server. I have a micro-service A. all web services of A are protected by Basic Authentication. How can we call the services of A b passing ...
Spaulding asked 18/2, 2016 at 20:16

1

I am developing a gateway for my micro services project using spring boot + netflix zuul. The gateway connects to netflix eureka server and filters the requests. But I am not able to bring up the z...
Sanctify asked 23/12, 2018 at 15:44

© 2022 - 2024 — McMap. All rights reserved.