原文: https://howtodoinjava.com/spring-cloud/spring-cloud-service-discovery-netflix-eureka/

学习在 Netflix Eureka 注册表服务器上基于 Spring cloud 创建微服务,以及其他微服务(Eureka 客户端)如何使用它注册和发现服务来调用他们的 API。

我们将使用基于 Spring Boot 的 Spring Cloud API。 我们将使用 Netflix Eureka 服务器来构建服务注册服务器,并使用 Eureka 客户端进行注册并发现其他服务以调用 REST API。

总览

我们将为此 Netflix Eureka 示例创建三个微服务。

  1. Eureka 服务注册表服务器-此微服务将提供服务注册表和发现服务器。
  2. 学生微服务 – 这将提供一些基于学生实体的功能。 这将是一个基于 REST 的服务,最重要的是它将是一个 eureka 客户服务,它将与 eureka 服务对话以在服务注册表中注册自己。
  3. 学校微服务 – 与学生服务的类型相同 – 唯一增加的功能是它将使用服务查找机制调用学生服务。 我们不会使用学生服务的绝对 URL 与该服务进行交互。

这是上面列出的三个服务之间的交互图。

使用 Netflix Eureka 进行 Spring Cloud 服务发现 - 图1

组件之间的交互

技术栈和运行时

  • Java 1.8
  • Eclipse IDE
  • SpringCloud
  • SpringBoot
  • SpringRest
  • Maven

什么是 Netflix Eureka 服务器和客户端?

众所周知,如今,微服务的发展势头非常强劲。 从单片架构过渡到基于微服务的体系结构在可维护性,可伸缩性,高可用性等切面为将来带来了许多好处。但是,与此同时,在进行这种迁移时也面临许多挑战。 其中之一是维护单个微服务地址。 这项任务可能非常复杂-取决于服务的数量及其动态性质。 如果整个基础架构都是分布式的,并且还存在一些复制,那么维护该服务地址将变得更加困难。

为了解决这个问题,在分布式计算中有一个称为“服务注册和发现”的概念,其中一个专用服务器负责维护已部署和删除的所有微服务的注册表。 这就像所有其他应用程序/微服务的电话簿一样。

可以将其视为微服务(客户端)可以注册自己并发现其他已注册微服务的查找服务。 当客户端微服务向 Eureka 注册时,它会提供元数据,例如主机,端口和运行状况指示器,从而允许其他微服务发现它。 发现服务器期望来自每个微服务实例的常规心跳消息。 如果实例开始始终无法发送心跳,发现服务器将从其注册表中删除该实例。 这样,我们将拥有一个非常稳定的微服务生态系统,彼此协作,并且最重要的是,我们不必手动维护其他微服务的地址,如果频繁进行规模扩大/缩减,则这是几乎不可能完成的任务 ,根据需要,我们使用虚拟主机专门在云环境中托管服务。

Eureka 服务注册表服务器

请按照以下步骤创建和运行 Eureka 服务器。

创建 Eureka 服务器

Spring Boot 初始化器页面创建一个具有两个依赖项的 Spring Boot 项目,即Eureka serverActuator。 给出其他 Maven GAV 坐标并下载项目。

使用 Netflix Eureka 进行 Spring Cloud 服务发现 - 图2

Eureka 服务器的服务项目生成

将项目解压缩并将其作为现有的 maven 项目导入 Eclipse。 在此步骤中,将从 maven 存储库下载所有必需的依赖项。

现在打开在下载的项目中已经生成的SpringEurekaServerApplication类,并在该类上添加@EnableEurekaServer注解。

  1. package com.example.howtodoinjava.springeurekaserver;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
  5. @EnableEurekaServer
  6. @SpringBootApplication
  7. public class SpringEurekaServerApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(SpringEurekaServerApplication.class, args);
  10. }
  11. }

再次构建项目。 使用此注解,此工件将充当微服务注册表和发现服务器。

服务器配置

src\main\resources目录中创建一个名为application.yml的文件。 添加这些属性:

  1. server:
  2. port: ${PORT:8761} # Indicate the default PORT where this service will be started
  3. eureka:
  4. client:
  5. registerWithEureka: false #telling the server not to register himself in the service registry
  6. fetchRegistry: false
  7. server:
  8. waitTimeInMsWhenSyncEmpty: 0 #wait time for subsequent sync

src\main\resources目录中创建另一个名为bootstrap.yml的文件。 添加这些属性:

  1. spring:
  2. application:
  3. name: eureka
  4. cloud:
  5. config:
  6. uri: ${CONFIG_SERVER_URL:http://localhost:8888}

测试 Eureka 服务器

作为 Spring Boot 应用程序启动该应用程序。 打开浏览器并转到http://localhost:8761/,您应该看到如下所示的 eureka 服务器主页。

使用 Netflix Eureka 进行 Spring Cloud 服务发现 - 图3

没有任何客户端的 Eureka 控制台

请注意,目前尚未在此处注册任何服务,这是我们期望的,一旦我们启动客户端服务,此服务器将自动更新客户端服务的详细信息。

Eureka 客户端 – 学生服务

请按照以下步骤创建并运行运行学生服务的 Eureka 客户端。

创建 Eureka 客户端项目

从具有四个依赖项的初始化器页面创建 Spring Boot 项目,即ActuatorWebRest RepositoriesEureka Discovery。 给出其他 Maven GAV 坐标并下载项目。

使用 Netflix Eureka 进行 Spring Cloud 服务发现 - 图4

客户端项目生成:学生微服务

将项目解压缩并将其作为现有的 maven 项目导入 Eclipse。

现在,在src文件夹中的 Spring 运行应用程序类上添加@EnableEurekaClient注解。 使用此注解,此工件将充当 Spring Discovery 客户端,并在连接到此服务的 eureka 服务器中进行注册。

  1. package com.example.howtodoinjava.springeurekaclientstudentservice;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
  5. @SpringBootApplication
  6. @EnableEurekaClient
  7. public class SpringEurekaClientStudentServiceApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(SpringEurekaClientStudentServiceApplication.class, args);
  10. }
  11. }

客户端配置

src\main\resources目录中创建一个名为application.yml的文件,然后添加以下几行。

  1. server:
  2. port: 8098 #default port where the service will be started
  3. eureka: #tells about the Eureka server details and its refresh time
  4. instance:
  5. leaseRenewalIntervalInSeconds: 1
  6. leaseExpirationDurationInSeconds: 2
  7. client:
  8. serviceUrl:
  9. defaultZone: http://127.0.0.1:8761/eureka/
  10. healthcheck:
  11. enabled: true
  12. lease:
  13. duration: 5
  14. spring:
  15. application:
  16. name: student-service #current service name to be used by the eureka server
  17. management:
  18. security:
  19. enabled: false #disable the spring security on the management endpoints like /env, /refresh etc.
  20. logging:
  21. level:
  22. com.example.howtodoinjava: DEBUG

添加 REST API

现在添加一个RestController并公开一个 REST 端点,以获取特定学校的所有学生详细信息。 在这里,我们公开/getStudentDetailsForSchool/{schoolname}端点来满足业务目的。 为简单起见,我们正在对学生详细信息进行硬编码。

  1. package com.example.howtodoinjava.springeurekaclientstudentservice.controller;
  2. import java.util.ArrayList;
  3. import java.util.HashMap;
  4. import java.util.List;
  5. import java.util.Map;
  6. import org.springframework.web.bind.annotation.PathVariable;
  7. import org.springframework.web.bind.annotation.RequestMapping;
  8. import org.springframework.web.bind.annotation.RequestMethod;
  9. import org.springframework.web.bind.annotation.RestController;
  10. import com.example.howtodoinjava.springeurekaclientstudentservice.domain.Student;
  11. @RestController
  12. public class StudentServiceController {
  13. private static Map<String, List<Student>> schooDB = new HashMap<String, List<Student>>();
  14. static {
  15. schooDB = new HashMap<String, List<Student>>();
  16. List<Student> lst = new ArrayList<Student>();
  17. Student std = new Student("Sajal", "Class IV");
  18. lst.add(std);
  19. std = new Student("Lokesh", "Class V");
  20. lst.add(std);
  21. schooDB.put("abcschool", lst);
  22. lst = new ArrayList<Student>();
  23. std = new Student("Kajal", "Class III");
  24. lst.add(std);
  25. std = new Student("Sukesh", "Class VI");
  26. lst.add(std);
  27. schooDB.put("xyzschool", lst);
  28. }
  29. @RequestMapping(value = "/getStudentDetailsForSchool/{schoolname}", method = RequestMethod.GET)
  30. public List<Student> getStudents(@PathVariable String schoolname) {
  31. System.out.println("Getting Student details for " + schoolname);
  32. List<Student> studentList = schooDB.get(schoolname);
  33. if (studentList == null) {
  34. studentList = new ArrayList<Student>();
  35. Student std = new Student("Not Found", "N/A");
  36. studentList.add(std);
  37. }
  38. return studentList;
  39. }
  40. }

Student类是一个简单的 POJO。

  1. public class Student
  2. {
  3. private String name;
  4. private String className;
  5. public Student(String name, String className) {
  6. super();
  7. this.name = name;
  8. this.className = className;
  9. }
  10. public String getName() {
  11. return name;
  12. }
  13. public void setName(String name) {
  14. this.name = name;
  15. }
  16. public String getClassName() {
  17. return className;
  18. }
  19. public void setClassName(String className) {
  20. this.className = className;
  21. }
  22. }

测试 Eureka 客户端

作为 spring boot 应用程序启动该项目。 现在,验证此服务已在 Eureka 服务器中自动注册。 转到 Eureka 服务控制台并刷新页面。 现在,如果一切顺利,我们将在 eureka 服务控制台中看到学生服务的一项。 这表明 Eureka 服务器和客户端都相互了解。

使用 Netflix Eureka 进行 Spring Cloud 服务发现 - 图5

已注册学生服务的 Eureka 控制台

现在,我们将验证/getStudentDetailsForSchool/{schoolname}端点是否已启动并正在运行。 转到浏览器并转到http://localhost:8098/getStudentDetailsForSchool/abcschool,它将为特定学校abcschool提供学生详细信息。

使用 Netflix Eureka 进行 Spring Cloud 服务发现 - 图6

学生服务响应

Eureka 客户端 – 学校服务

现在,我们将创建学校服务,该服务将在 eureka 服务器中进行注册-它将发现并调用没有硬编码 URL 路径的学生服务。

遵循创建学生服务的确切步骤,以及创建并运行运行学校服务的 Eureka 客户程序。

创建 Eureka 客户端项目

从具有四个依赖项的初始化器页面创建 Spring Boot 项目,即ActuatorWebRest RepositoriesEureka Discovery。 给出其他 Maven GAV 坐标并下载项目。

将项目解压缩并将其作为现有的 maven 项目导入 Eclipse。

现在,在src文件夹中的 Spring 运行应用程序类上添加@EnableEurekaClient注解。 使用此注解,此工件将充当 Spring 发现客户端,并在连接到此服务的 eureka 服务器中进行注册。

  1. package com.example.howtodoinjava.springeurekaclientschoolservice;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
  5. @SpringBootApplication
  6. @EnableEurekaClient
  7. public class SpringEurekaClientSchoolServiceApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(SpringEurekaClientSchoolServiceApplication.class, args);
  10. }
  11. }

客户端配置

src\main\resources目录中创建一个名为application.yml的文件,然后添加以下几行。 除了端口号和服务名称之外,这些配置与学生服务非常相似。

  1. server:
  2. port: 9098 #port number
  3. eureka:
  4. instance:
  5. leaseRenewalIntervalInSeconds: 1
  6. leaseExpirationDurationInSeconds: 2
  7. client:
  8. serviceUrl:
  9. defaultZone: http://127.0.0.1:8761/eureka/
  10. healthcheck:
  11. enabled: true
  12. lease:
  13. duration: 5
  14. spring:
  15. application:
  16. name: school-service #service name
  17. logging:
  18. level:
  19. com.example.howtodoinjava: DEBUG

添加使用学生服务的 REST API 的 REST API

现在添加一个RestController,并公开一个 REST 点以获取学校详细信息。 该端点将使用带有应用程序名称的服务发现样式 URL,而不是带有host:port的完整 URL。

  1. package com.example.howtodoinjava.springeurekaclientschoolservice.controller;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.cloud.client.loadbalancer.LoadBalanced;
  4. import org.springframework.context.annotation.Bean;
  5. import org.springframework.core.ParameterizedTypeReference;
  6. import org.springframework.http.HttpMethod;
  7. import org.springframework.web.bind.annotation.PathVariable;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RequestMethod;
  10. import org.springframework.web.bind.annotation.RestController;
  11. import org.springframework.web.client.RestTemplate;
  12. @RestController
  13. public class SchoolServiceController {
  14. @Autowired
  15. RestTemplate restTemplate;
  16. @RequestMapping(value = "/getSchoolDetails/{schoolname}", method = RequestMethod.GET)
  17. public String getStudents(@PathVariable String schoolname)
  18. {
  19. System.out.println("Getting School details for " + schoolname);
  20. String response = restTemplate.exchange("http://student-service/getStudentDetailsForSchool/{schoolname}",
  21. HttpMethod.GET, null, new ParameterizedTypeReference<String>() {}, schoolname).getBody();
  22. System.out.println("Response Received as " + response);
  23. return "School Name - " + schoolname + " \n Student Details " + response;
  24. }
  25. @Bean
  26. @LoadBalanced
  27. public RestTemplate restTemplate() {
  28. return new RestTemplate();
  29. }
  30. }

这样,我们可以摆脱特定的服务配置,并且可以赋予服务查找此处提供的 eureka 服务器和其余模板的责任。 如果多个实例正在为同一服务运行,我们也可以在此处应用负载平衡(请参阅@LoadBalanced注解)。

我们使用的 URL 是http://student-service/getStudentDetailsForSchool/{schoolname}。 显然,我们只使用服务名称student-service代替host:port。 这将由 spring 框架,eureka 服务器和 rest 模板在内部处理。

服务发现和调用演示

现在也开始学校服务。 所有这三个服务都已启动。 检查 eureka 服务器控制台。 学生和学校服务都必须在此注册。

使用 Netflix Eureka 进行 Spring Cloud 服务发现 - 图7

两种服务均已注册的 Eureka 控制台

转到浏览器,然后转到http://localhost:9098/getSchoolDetails/abcschool,它将提供特定学校abcschool的详细信息。 内部调用了学生服务。 响应看起来像在浏览器中:

使用 Netflix Eureka 进行 Spring Cloud 服务发现 - 图8

学校服务响应

检查是否遇到任何错误的事情

  1. 注解@EnableEurekaServer@EnableEurekaClient是应用程序生态系统的核心。 没有这两个东西将根本无法工作。
  2. 确保在启动配置客户端服务时,eureka 服务器服务已在运行,否则可能要花一些时间进行注册,这可能会在测试时造成混乱。

总结

我们看到了如何轻松高效地部署服务注册表和发现服务器以及客户端。 Spring 框架在内部维护着很多东西。 在这里,我们仅使用几个注解和非常少的配置即可快速完成所有操作。

这就是创建 spring eureka 服务器和微服务注册的全部内容。 如果您在执行本文时遇到任何困难,请添加评论。 我们将很乐意调查这个问题。

下载这篇文章的源码

学习愉快!