Questions tagged [spring-cloud-netflix]

Spring-Cloud-Netflix provides Netflix OSS integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms.

With a few simple annotations you can quickly enable and configure the common patterns inside your application and build large distributed systems with battle-tested Netflix components. The patterns provided include Service Discovery (Eureka), Circuit Breaker (Hystrix), Intelligent Routing (Zuul) and Client Side Load Balancing (Ribbon). Here you can find all the details.

879 questions
0
votes
1 answer

Jackson deserialisation error when upgrading spring-cloud-netflix from 1.3.0.M1 -> 1.3.0.RELEASE

I am getting jackson deserialisation error when I upgraded spring cloud netflix from 1.3.0.M1 -> 1.3.0.RELEASE. The Post request that I hit is Received [POST /wms-mdm/catalog HTTP/1.1 Host: localhost:8093 Content-Type: application/json Origin:…
Arpan Agrawal
  • 91
  • 2
  • 6
0
votes
0 answers

Spring Boot Hystrix : Request is being retried : How to avoid

Am building a rest service using spring boot. I am testing the Hystrix timeout configurations in my application; for that I started my server in debug mode and put break point to see how much time it is actually takes to timeout. While the control…
0
votes
1 answer

Replace ConfigurationBasedServerList for all services

With Ribbon, if you want to use a custom ServerList implementation instead of the default ConfigurationBasedServerList for a specific service, you can do it like this in the application configuration file: my-service: ribbon: …
0
votes
1 answer

Spring Boot dead lock with websphere liberty classloader

I am running spring boot applications on WebSphere Liberty servers(version 16.0.0.4). There more than on war with springboot application run on single instance of liberty. The spring library version we have are Spring Core -…
vinothM
  • 195
  • 1
  • 6
0
votes
1 answer

PKIX path building failed while Eureka Client connecting with SSL enabled Eureka Server in Spring Cloud

I'm building cloud based microservice architecture using spring boot.we are using embedded container only which is tomcat for spring boot. moreover we've also added cert to jvm keystore. To make it more simple I've created only two spring boot…
0
votes
0 answers

https://repo.spring.io/snapshot doesn't contain the latest snapshot for Spring Cloud Netflix

Where can I find the latest snapshots of Spring Cloud Netflix? Spring Initializr uses https://repo.spring.io/snapshot which only has a snapshot as of April 7 for e.g. org.springframework.cloud:spring-cloud-netflix-eureka-client:2.0.0.BUILD-SNAPSHOT…
Juergen Zimmermann
  • 2,084
  • 7
  • 29
  • 43
0
votes
0 answers

Spring Boot 2.0.0.M1: Where is the package org.springframework.bind?

Spring Boot 1.5.3.RELEASE had several classes in org.springframework.boot.bind, especially RelaxedPropertyResolver. However, https://github.com/spring-projects/spring-boot/tree/v2.0.0.M1/spring-boot/src/main/java/org/springframework/boot doesn't…
0
votes
0 answers

why couldn't the configuration in bootstrap.yml work?

bootstrap.yml & application.yml zuul.SendResponseFilter.post.disable: true zuul.SendErrorFilter.post.disable: true zuul.TraceDebugPreFilter.post.disable: true zuul.ServletDetectionFilter.pre.disable: true It couldn't work because…
s.well.tt
  • 37
  • 2
  • 7
0
votes
1 answer

Spring-cloud Zuul retry when instance is down and forward t other other available instance

using 'Dalston.RELEASE' for spring-cloud-dependencies, with spring boot '1.5.2.RELEASE'. In my setup, I have eureka server zuul gateway server 2 instances of a service [cloud-client] and have registered the eureka server My zuul Application…
dongxingong
  • 45
  • 1
  • 5
0
votes
1 answer

Using logstash, config server and eureka with spring cloud task and dataflow

We have an existing microservice environment with logstash, config and eureka servers. We are now setting up a Spring Cloud Dataflow (Kubernetes) environment (primarily intially to run tasks/batch jobs). Ideally we would like the tasks to use the…
0
votes
1 answer

Problems customizing SendErrorFilter

The Spring Cloud Netflix documentation states that the default forwarding path (/error) for SendErrorFilter can be changed by setting the error.path property. When I do this, I encounter the following…
Keith Bennett
  • 733
  • 11
  • 25
0
votes
1 answer

Spring Cloud Contract and Zuul

Using Spring Cloud Dalston, we have built a proxy service that, of course, uses Zuul. I am now trying to add Spring Cloud Contract tests to verify our proxy service works as expected from a contract adherence perspective. What is strange is that I…
0
votes
1 answer

hystrix metrics stream: The 'delay' parameter doesn't work

My application integrates Hystrix as circuit breaker, and the stream endpoint is exposed at /hystrix.stream. Now I want to control the streaming frequency by 'delay' parameter: curl "http://localhost:9000/hystrix.stream?delay=1000" Unfortunately…
Neo
  • 2,196
  • 5
  • 32
  • 58
0
votes
1 answer

@Loadbalanced - will it work with AsyncRestTemplate?

I tried to follow "https://github.com/spring-cloud/spring-cloud-sleuth/issues/124" (https://github.com/spring-cloud-samples/brewery/blob/master/brewing/src/main/java/io/spring/cloud/samples/brewery/bottling/BottlingConfiguration.java#L30) but it…
0
votes
2 answers

Hostname information in the feign Logger

I am using feign clients in spring-cloud environment with the Eureka discovery service and implementing a custom feign logger to be able to log some usefull request and response information. For that I have extended feign.Logger class and overriden…