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
-1
votes
1 answer

What is difference between spring's netflix and netflix

Spring framework has a Netflix OSS and its integration. I wonder that spring has a special change like a patch for Netflix OSS. I mean spring's Netflix zuul and Netflix's zuul are completely same thing, as a source code and so on?
onur
  • 1
-1
votes
1 answer

where to download spring cloud netflix Java API Doc?

Where to download the Java API doc for spring cloud netlix Looking for something like this. https://maven.springframework.org/release/org/springframework/spring/5.2.9.RELEASE/
Peddi
  • 92
  • 1
  • 9
-1
votes
1 answer

Microservices are getting killed automatically

I am using Eureka Server for microservices, I have deployed microservices on VPS. My server is having Centos 7. I am deploying each microservice on different screen but after some time microservice started getting killed automatically. When I check…
-1
votes
1 answer

AWS problem accessing Spring cloud eureka server

I am migrating my spring cloud eureka application to AWS ECS and currently having some trouble doing so. I have an ECS cluster on AWS in which an EC2 service of eureka-server is running on it. in this service, there is a task running My problem is…
-1
votes
1 answer

"Hystrix stream is not generating for my spring mvc application"

I have a simple Spring MVC application. For that application I have Implemented Circuit Breaker Pattern using @EnableCircuitBreaker Annotation. It is working fine. But While trying to generate the hystrix stream it showing 404 error. Can anyone…
-1
votes
2 answers

NoClassDefFoundError: NameCoder at Spring Cloud Brixton.SR7 and Spring Cloud Camden.SR3

For all the Camden releases and now on the Brixton.SR7 as well, the following issue related to the Eureka Client occurs when starting the Spring Boot app: java.lang.NoClassDefFoundError: com/thoughtworks/xstream/io/naming/NameCoder For an instance I…
-1
votes
1 answer

Spring boot , Eureka server , IBM WAS : logback gives NoClassDefFoundError ch.qos.logback.classic.spi.ThrowableProxy

I have a problem when starting a spring boot application (Eureka server )( tried :1.4.0 , 1.3.7 , 1.3.6 ) on IBM Websphere Application server ( 8.5.5.9) with jdk 8 , it throws the following exception : [8/22/16 14:04:02:483 GMT+02:00] 00000098…
-1
votes
1 answer

Can we have a generic HystrixCommand subclass from where we can invoke different dependencies?

I'm new to Hystrix. I have a list of dependency calls which I need to wrap using HystrixCommand. Only possible way I found is by creating separate HystricCommand subclass for each dependency call & invoke the dependency within the run method of the…
Manikandan
  • 83
  • 1
  • 7
-2
votes
1 answer

Adding properties to Spring Boot application.yml file at the maven build time

I have the use case in which I need to write some properties to the spring boot application.yml file for each Spring boot profile at the maven build time. Input(application.yml) : spring: profiles: ED eureka: client: enabled: true …
1 2 3
58
59