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?
Asked
Active
Viewed 179 times
1 Answers
1
Spring Cloud Netflix provides auto-configuration and binding to other Spring idioms, so that you can easily integrate projects like Eureka, Ribbon or Hystrix with Spring Boot applications.
For example, you can enable the Eureka discovery client in a Spring Boot application by simply having the spring-cloud-starter-netflix-eureka-client
dependency on your classpath and adding some corresponding configuration properties:
eureka:
client:
serviceUrl:
defaultZone: http://localhost:8761/eureka/
Please note most of the Spring Cloud Netflix components (including Hystrix, Ribbon and Zuul) are in maintenance mode and have been replaced with other projects.

Gregor Zurowski
- 2,222
- 2
- 9
- 15