Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

difference between `spring-cloud-starter-eureka-server` and `spring-cloud-starter-netflix-eureka-server`

Tags:

spring-cloud

I am new to the Spring Cloud, what is the exact difference between spring-cloud-starter-eureka-server and spring-cloud-starter-netflix-eureka-server ?

When we should go for spring-cloud-starter-eureka-server and spring-cloud-starter-netflix-eureka-server?

What is the business implication of these two ?

like image 541
Jeff Cook Avatar asked Apr 17 '18 19:04

Jeff Cook


People also ask

What is spring cloud Netflix Eureka?

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.

What is difference between Eureka server and Eureka client?

Eureka Server is an application that holds the information about all client-service applications. Every Micro service will register into the Eureka server and Eureka server knows all the client applications running on each port and IP address. Eureka Server is also known as Discovery Server.

Does Netflix still use Eureka?

Eureka 2 was an experiment that ended not being used. Netflix still uses eureka 1.

Which mode of Eureka server has multiple Eureka servers?

The Eureka server works in two modes: Standalone: in local, we configure a stand-alone mode where we have only one Eureka server (localhost) and the same cloning property from itself. Clustered: we have multiple Eureka servers, each cloning its states from its peer.


1 Answers

There is no difference, it's just a naming convention in Spring Cloud.

Since Spring Cloud Edgware, use of the deprecated starter will log a warning with the name of the new starter to use in its place.

For your first question : It's highly recommended to go for spring-cloud-starter-netflix-... instead of spring-cloud-starter-...

Second question : no business implication. Maybe you should think about next releases to be conform.

You can find more details on Spring Cloud Wiki

like image 110
redoff Avatar answered Sep 28 '22 08:09

redoff