2.1-微服架构

1587520885330.png

微服务架构
“微服务”一词源于 Martin Fowler的名为 Microservices的博文,可以在他的官方博客上找到
http://martinfowler.com/articles/microservices.html

  • 微服务是系统架构上的一种设计风格,它的主旨是将一个原本独立的系统拆分成多个小型服务,这些小型服务都在各自独立的进程中运行,服务之间一般通过 HTTP 的 RESTfuLAPI 进行通信协作。
  • 被拆分成的每一个小型服务都围绕着系统中的某一项或些耦合度较高的业务功能进行构建,并且每个服务都维护着自身的数据存储、业务开发自动化测试案例以及独立部署机
    制。
  • 由于有了轻量级的通信协作基础,所以这些微服务可以使用
    不同的语言来编写。

1587521016035.png

2.2-初识Spring Cloud

1587521103729.png

  • Spring Cloud 是一系列框架的有序集合。
  • Spring Cloud 并没有重复制造轮子,它只是将目前各家公司开发的比较成熟、经得起实际考验的服务框架组合起来。
  • 通过 Spring Boot 风格进行再封装屏蔽掉了复杂的配置和实现原理,最终给开发者留出了一套简单易懂、易部署和易维护的分布式系统开发工具包。
  • 它利用Spring Boot的开发便利性巧妙地简化了分布式系统基础设施的开发,如服务发现注册、配置中心、消息总线、负载均衡、 断路器、数据监控等,都可以用Spring Boot的开发风格做到一键启动和部署。
  • Spring Cloud项目官方网址:https://spring.io/projects/spring-cloud
  • Spring Cloud 版本命名方式采用了伦敦地铁站的名称,同时根据字母表的顺序来对应版本时间顺序,比如:最早的Release版本:Angel,第二个Release版本:Brixton,然后是Camden、Dalston、Edgware,Finchley,Greenwich,Hoxton。
  • 目前最新的是Hoxton版本。
    1587521364642.png

2.3-Spring Cloud 和dubbo对比

1587521416722.png

Spring Cloud 和dubbo对比

  • Spring Cloud 与 Dubbo 都是实现微服务有效的工具。
  • Dubbo 只是实现了服务治理,而 Spring Cloud 子项目分别覆盖了微服务架构下的众多部件。
  • Dubbo 使用 RPC 通讯协议,Spring Cloud 使用 RESTful 完成通信,Dubbo 效率略高于 Spring Cloud。

总结

  • 微服务就是将项目的各个模块拆分为可独立运行、部署、测试的架构设计风格。
  • Spring 公司将其他公司中微服务架构常用的组件整合起来,并使用 SpringBoot 简化其开发、配置。
    称为 Spring Cloud
  • Spring Cloud 与 Dubbo都是实现微服务有效的工具。Dubbo 性能更好,而 Spring Cloud 功能更全面。

3.Spring Cloud服务治理

w!&V85dF:7Bx

3.1-Eureka介绍

• Eureka 是 Netflix 公司开源的一个服务注册与发现的组件 。

• Eureka 和其他 Netflix 公司的服务组件(例如负载均衡、熔断器、网关等) 一起,被 Spring Cloud 社区整合为
Spring-Cloud-Netflix 模块。

• Eureka 包含两个组件:Eureka Server (注册中心) 和 Eureka Client (服务提供者、服务消费者)。

1587521790834.png

Eureka学习步骤

  1. 搭建 Provider 和 Consumer 服务。
  2. 使用 RestTemplate 完成远程调用。
  3. 搭建 Eureka Server 服务。
  4. 改造 Provider 和 Consumer 称为 Eureka Client。
  5. Consumer 服务 通过从 Eureka Server 中抓取 Provider
    地址 完成 远程调用

3.2-Eureka快速入门

3.2.1-环境搭建

1587521884457.png

3.2.1.1-创建父工程

创建module -父工程 Spring-cloud-parent

1587522395375.png

  • 创建后的目录结构(删除src)

1587522452309.png

Spring-cloud-parent pom.xml

  1. <!--spring boot 环境 -->
  2. <parent>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-parent</artifactId>
  5. <version>2.1.0.RELEASE</version>
  6. <relativePath/>
  7. </parent>
  8. <properties>
  9. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  10. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  11. <java.version>1.8</java.version>
  12. </properties>

3.2.1.2-创建服务提供者

  • 创建服务提供者eureka-provider

1587522649367.png

eureka-provider pom.xml

  1. <dependencies>
  2. <!--spring boot web-->
  3. <dependency>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-starter-web</artifactId>
  6. </dependency>
  7. </dependencies>

GoodsController

  1. package com.itheima.provider.controller;
  2. import com.itheima.provider.domain.Goods;
  3. import com.itheima.provider.service.GoodsService;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.web.bind.annotation.GetMapping;
  6. import org.springframework.web.bind.annotation.PathVariable;
  7. import org.springframework.web.bind.annotation.RequestMapping;
  8. import org.springframework.web.bind.annotation.RestController;
  9. /**
  10. * Goods Controller 服务提供方
  11. */
  12. @RestController
  13. @RequestMapping("/goods")
  14. public class GoodsController {
  15. @Autowired
  16. private GoodsService goodsService;
  17. @GetMapping("/findOne/{id}")
  18. public Goods findOne(@PathVariable("id") int id){
  19. Goods goods = goodsService.findOne(id);
  20. return goods;
  21. }
  22. }

GoodsService

  1. package com.itheima.provider.service;
  2. import com.itheima.provider.dao.GoodsDao;
  3. import com.itheima.provider.domain.Goods;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.stereotype.Service;
  6. /**
  7. * Goods 业务层
  8. */
  9. @Service
  10. public class GoodsService {
  11. @Autowired
  12. private GoodsDao goodsDao;
  13. /**
  14. * 根据id查询
  15. * @param id
  16. * @return
  17. */
  18. public Goods findOne(int id){
  19. return goodsDao.findOne(id);
  20. }
  21. }

Goods

  1. package com.itheima.provider.domain;
  2. /**
  3. * 商品实体类
  4. */
  5. public class Goods {
  6. private int id;
  7. private String title;//商品标题
  8. private double price;//商品价格
  9. private int count;//商品库存
  10. public Goods() {
  11. }
  12. public Goods(int id, String title, double price, int count) {
  13. this.id = id;
  14. this.title = title;
  15. this.price = price;
  16. this.count = count;
  17. }
  18. public int getId() {
  19. return id;
  20. }
  21. public void setId(int id) {
  22. this.id = id;
  23. }
  24. public String getTitle() {
  25. return title;
  26. }
  27. public void setTitle(String title) {
  28. this.title = title;
  29. }
  30. public double getPrice() {
  31. return price;
  32. }
  33. public void setPrice(double price) {
  34. this.price = price;
  35. }
  36. public int getCount() {
  37. return count;
  38. }
  39. public void setCount(int count) {
  40. this.count = count;
  41. }
  42. }

GoodsDao

  1. package com.itheima.provider.dao;
  2. import com.itheima.provider.domain.Goods;
  3. import org.springframework.stereotype.Repository;
  4. import javax.validation.ReportAsSingleViolation;
  5. /**
  6. * 商品Dao
  7. */
  8. @Repository
  9. public class GoodsDao {
  10. public Goods findOne(int id){
  11. return new Goods(1,"华为手机",3999,10000);
  12. }
  13. }

ProviderApp

  1. package com.itheima.provider;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. /**
  5. * 启动类
  6. */
  7. @SpringBootApplication
  8. public class ProviderApp {
  9. public static void main(String[] args) {
  10. SpringApplication.run(ProviderApp.class,args);
  11. }
  12. }

application.yml

  1. server:
  2. port: 8000

3.2.1.2-创建服务消费者

  • 创建服务消费者eureka-consumer

1587522728754.png

  • 最终目录结构

1587522756792.png

OrderController

  1. package com.itheima.consumer.controller;
  2. import com.itheima.consumer.domain.Goods;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.web.bind.annotation.GetMapping;
  5. import org.springframework.web.bind.annotation.PathVariable;
  6. import org.springframework.web.bind.annotation.RequestMapping;
  7. import org.springframework.web.bind.annotation.RestController;
  8. /**
  9. * 服务的调用方
  10. */
  11. @RestController
  12. @RequestMapping("/order")
  13. public class OrderController {
  14. @GetMapping("/goods/{id}")
  15. public Goods findGoodsById(@PathVariable("id") int id){
  16. System.out.println("findGoodsById..."+id);
  17. //远程调用Goods服务中的findOne接口
  18. return null;
  19. }
  20. }

Goods

  1. package com.itheima.consumer.domain;
  2. /**
  3. * 商品实体类
  4. */
  5. public class Goods {
  6. private int id;
  7. private String title;//商品标题
  8. private double price;//商品价格
  9. private int count;//商品库存
  10. public Goods() {
  11. }
  12. public Goods(int id, String title, double price, int count) {
  13. this.id = id;
  14. this.title = title;
  15. this.price = price;
  16. this.count = count;
  17. }
  18. public int getId() {
  19. return id;
  20. }
  21. public void setId(int id) {
  22. this.id = id;
  23. }
  24. public String getTitle() {
  25. return title;
  26. }
  27. public void setTitle(String title) {
  28. this.title = title;
  29. }
  30. public double getPrice() {
  31. return price;
  32. }
  33. public void setPrice(double price) {
  34. this.price = price;
  35. }
  36. public int getCount() {
  37. return count;
  38. }
  39. public void setCount(int count) {
  40. this.count = count;
  41. }
  42. }

ConsumerApp

  1. package com.itheima.consumer;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. @SpringBootApplication
  5. public class ConsumerApp {
  6. public static void main(String[] args) {
  7. SpringApplication.run(ConsumerApp.class,args);
  8. }
  9. }

application.yml

  1. server:
  2. port: 9000

3.2.2-RestTemplate远程调用

• Spring提供的一种简单便捷的模板类,用于在 java 代码里访问 restful 服务。
• 其功能与 HttpClient 类似,但是 RestTemplate 实现更优雅,使用更方便。

修改消费方代码

RestTemplateConfig

  1. package com.itheima.consumer.config;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.web.client.RestTemplate;
  5. @Configuration
  6. public class RestTemplateConfig {
  7. @Bean
  8. public RestTemplate restTemplate(){
  9. return new RestTemplate();
  10. }
  11. }

OrderController

  1. package com.itheima.consumer.controller;
  2. import com.itheima.consumer.domain.Goods;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.web.bind.annotation.GetMapping;
  5. import org.springframework.web.bind.annotation.PathVariable;
  6. import org.springframework.web.bind.annotation.RequestMapping;
  7. import org.springframework.web.bind.annotation.RestController;
  8. import org.springframework.web.client.RestTemplate;
  9. /**
  10. * 服务的调用方
  11. */
  12. @RestController
  13. @RequestMapping("/order")
  14. public class OrderController {
  15. @Autowired
  16. private RestTemplate restTemplate;
  17. @GetMapping("/goods/{id}")
  18. public Goods findGoodsById(@PathVariable("id") int id){
  19. System.out.println("findGoodsById..."+id);
  20. /*
  21. //远程调用Goods服务中的findOne接口
  22. 使用RestTemplate
  23. 1. 定义Bean restTemplate
  24. 2. 注入Bean
  25. 3. 调用方法
  26. */
  27. String url = "http://localhost:8000/goods/findOne/"+id;
  28. // 3. 调用方法
  29. Goods goods = restTemplate.getForObject(url, Goods.class);
  30. return goods;
  31. }
  32. }

3.2.3- Eureka Server搭建

① 创建 eureka-server 模块

② 引入 SpringCloud 和 euraka-server 相关依赖

Spring-cloud-parent pom.xml

  1. <properties>
  2. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  3. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  4. <java.version>1.8</java.version>
  5. <!--spring cloud 版本-->
  6. <spring-cloud.version>Greenwich.RELEASE</spring-cloud.version>
  7. </properties>
  8. <!--引入Spring Cloud 依赖-->
  9. <dependencyManagement>
  10. <dependencies>
  11. <dependency>
  12. <groupId>org.springframework.cloud</groupId>
  13. <artifactId>spring-cloud-dependencies</artifactId>
  14. <version>${spring-cloud.version}</version>
  15. <type>pom</type>
  16. <scope>import</scope>
  17. </dependency>
  18. </dependencies>
  19. </dependencyManagement>

eureka-server pom.xml

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-web</artifactId>
  5. </dependency>
  6. <!-- eureka-server -->
  7. <dependency>
  8. <groupId>org.springframework.cloud</groupId>
  9. <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  10. </dependency>
  11. </dependencies>

EurekaApp

  1. package com.itheima.eureka;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
  5. @SpringBootApplication
  6. // 启用EurekaServer
  7. @EnableEurekaServer
  8. public class EurekaApp {
  9. public static void main(String[] args) {
  10. SpringApplication.run(EurekaApp.class,args);
  11. }
  12. }

③ 完成 Eureka Server 相关配置

application.yml

  1. server:
  2. port: 8761
  3. # eureka 配置
  4. # eureka 一共有4部分 配置
  5. # 1. dashboard:eureka的web控制台配置
  6. # 2. server:eureka的服务端配置
  7. # 3. client:eureka的客户端配置
  8. # 4. instance:eureka的实例配置
  9. eureka:
  10. instance:
  11. hostname: localhost # 主机名
  12. client:
  13. service-url:
  14. defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka # eureka服务端地址,将来客户端使用该地址和eureka进行通信
  15. register-with-eureka: false # 是否将自己的路径 注册到eureka上。eureka server 不需要的,eureka provider client 需要
  16. fetch-registry: false # 是否需要从eureka中抓取路径。eureka server 不需要的,eureka consumer client 需要

④ 启动该模块

3.2.4-Eureka控制台介绍

1587524898190.png

1587524966009.png

System status:系统状态信息

DS Replicas:集群信息

tance currently registered with Eureka: 实例注册信息

General Info :通用信息

Instance Info :实例信息

3.2.5-Eureka Client

① 引 eureka-client 相关依赖

eureka-provider pom.xml

  1. <dependencies>
  2. <!--spring boot web-->
  3. <dependency>
  4. <groupId>org.springframework.boot</groupId>
  5. <artifactId>spring-boot-starter-web</artifactId>
  6. </dependency>
  7. <!-- eureka-client -->
  8. <dependency>
  9. <groupId>org.springframework.cloud</groupId>
  10. <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  11. </dependency>
  12. </dependencies>

ProviderApp

  1. package com.itheima.provider;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
  5. /**
  6. * 启动类
  7. */
  8. @EnableEurekaClient //该注解 在新版本中可以省略
  9. @SpringBootApplication
  10. public class ProviderApp {
  11. public static void main(String[] args) {
  12. SpringApplication.run(ProviderApp.class,args);
  13. }
  14. }

② 完成 eureka client 相关配置

application.yml

  1. server:
  2. port: 8001
  3. eureka:
  4. instance:
  5. hostname: localhost # 主机名
  6. client:
  7. service-url:
  8. defaultZone: http://localhost:8761/eureka # eureka服务端地址,将来客户端使用该地址和eureka进行通信
  9. spring:
  10. application:
  11. name: eureka-provider # 设置当前应用的名称。将来会在eureka中Application显示。将来需要使用该名称来获取路径

③ 启动 测试

1587525778719.png

服务消费者eureka-consumer通过修改,也可以展示在控制台

eureka-consumer在这里仅仅是我们人为定义为消费者,作为一个服务,其实既可以作为服务提供方,同时也可以作为服务消费方

ConsumerApp添加@EnableEurekaClient

  1. package com.itheima.consumer;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
  5. import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
  6. @EnableEurekaClient
  7. @SpringBootApplication
  8. public class ConsumerApp {
  9. public static void main(String[] args) {
  10. SpringApplication.run(ConsumerApp.class,args);
  11. }
  12. }

application.yml

  1. server:
  2. port: 9000
  3. eureka:
  4. instance:
  5. hostname: localhost # 主机名
  6. client:
  7. service-url:
  8. defaultZone: http://localhost:8761/eureka # eureka服务端地址,将来客户端使用该地址和eureka进行通信
  9. spring:
  10. application:
  11. name: eureka-consumer # 设置当前应用的名称。将来会在eureka中Application显示。将来需要使用该名称来获取路径

1587526247520.png

3.2.6- 动态获取路径

ConsumerApp添加@EnableDiscoveryClient

  1. package com.itheima.consumer;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
  5. import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
  6. @EnableDiscoveryClient // 激活DiscoveryClient
  7. @EnableEurekaClient
  8. @SpringBootApplication
  9. public class ConsumerApp {
  10. public static void main(String[] args) {
  11. SpringApplication.run(ConsumerApp.class,args);
  12. }
  13. }

OrderController修改代码动态获取路径

  1. package com.itheima.consumer.controller;
  2. import com.itheima.consumer.domain.Goods;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.cloud.client.ServiceInstance;
  5. import org.springframework.cloud.client.discovery.DiscoveryClient;
  6. import org.springframework.web.bind.annotation.GetMapping;
  7. import org.springframework.web.bind.annotation.PathVariable;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RestController;
  10. import org.springframework.web.client.RestTemplate;
  11. import java.util.List;
  12. /**
  13. * 服务的调用方
  14. */
  15. @RestController
  16. @RequestMapping("/order")
  17. public class OrderController {
  18. @Autowired
  19. private RestTemplate restTemplate;
  20. @Autowired
  21. private DiscoveryClient discoveryClient;
  22. @GetMapping("/goods/{id}")
  23. public Goods findGoodsById(@PathVariable("id") int id){
  24. System.out.println("findGoodsById..."+id);
  25. /*
  26. //远程调用Goods服务中的findOne接口
  27. 使用RestTemplate
  28. 1. 定义Bean restTemplate
  29. 2. 注入Bean
  30. 3. 调用方法
  31. */
  32. /*
  33. 动态从Eureka Server 中获取 provider 的 ip 和端口
  34. 1. 注入 DiscoveryClient 对象.激活
  35. 2. 调用方法
  36. */
  37. //演示discoveryClient 使用
  38. List<ServiceInstance> instances = discoveryClient.getInstances("EUREKA-PROVIDER");
  39. //判断集合是否有数据
  40. if(instances == null || instances.size() == 0){
  41. //集合没有数据
  42. return null;
  43. }
  44. ServiceInstance instance = instances.get(0);
  45. String host = instance.getHost();//获取ip
  46. int port = instance.getPort();//获取端口
  47. System.out.println(host);
  48. System.out.println(port);
  49. String url = "http://"+host+":"+port+"/goods/findOne/"+id;
  50. // 3. 调用方法
  51. Goods goods = restTemplate.getForObject(url, Goods.class);
  52. return goods;
  53. }
  54. }

3.3-Eureka属性

3.3.1-instance相关属性

1587526675591.png

Eureka Instance的配置信息全部保存在org.springframework.cloud.netflix.eureka.EurekaInstanceConfigBean配置类里,实际上它是com.netflix.appinfo.EurekaInstanceConfig的实现类,替代了netflix的com.netflix.appinfo.CloudInstanceConfig的默认实现。

Eureka Instance的配置信息全部以eureka.instance.xxx的格式配置。

配置列表

  • appname = unknown

应用名,首先获取spring.application.name的值,如果取值为空,则取默认unknown。

  • appGroupName = null

应用组名

  • instanceEnabledOnit = false

实例注册到Eureka上是,是否立刻开启通讯。有时候应用在准备好服务之前需要一些预处理。

  • nonSecurePort = 80

非安全的端口

  • securePort = 443

安全端口

  • nonSecurePortEnabled = true

是否开启非安全端口通讯

  • securePortEnabled = false

是否开启安全端口通讯

  • leaseRenewalIntervalInSeconds = 30

实例续约间隔时间

  • leaseExpirationDurationInSeconds = 90

实例超时时间,表示最大leaseExpirationDurationInSeconds秒后没有续约,Server就认为他不可用了,随之就会将其剔除。

  • virtualHostName = unknown

虚拟主机名,首先获取spring.application.name的值,如果取值为空,则取默认unknown。

  • instanceId

注册到eureka上的唯一实例ID,不能与相同appname的其他实例重复。

  • secureVirtualHostName = unknown

安全虚拟主机名,首先获取spring.application.name的值,如果取值为空,则取默认unknown。

  • metadataMap = new HashMap();

实例元数据,可以供其他实例使用。比如spring-boot-admin在监控时,获取实例的上下文和端口。

  • dataCenterInfo = new MyDataCenterInfo(DataCenterInfo.Name.MyOwn);

实例部署的数据中心。如AWS、MyOwn。

  • ipAddress=null

实例的IP地址

  • statusPageUrlPath = “/actuator/info”

实例状态页相对url

  • statusPageUrl = null

实例状态页绝对URL

  • homePageUrlPath = “/“

实例主页相对URL

  • homePageUrl = null

实例主页绝对URL

  • healthCheckUrlUrlPath = “/actuator/health”

实例健康检查相对URL

  • healthCheckUrl = null

实例健康检查绝对URL

  • secureHealthCheckUrl = null

实例安全的健康检查绝对URL

  • namespace = “eureka”

配置属性的命名空间(Spring Cloud中被忽略)

  • hostname = null

主机名,不配置的时候讲根据操作系统的主机名来获取

  • preferIpAddress = false

是否优先使用IP地址作为主机名的标识

3.3.1-server相关属性

1587526704046.png

Eureka Server注册中心端的配置是对注册中心的特性配置。Eureka Server的配置全部在org.springframework.cloud.netflix.eureka.server.EurekaServerConfigBean里,实际上它是com.netflix.eureka.EurekaServerConfig的实现类,替代了netflix的默认实现。

Eureka Server的配置全部以eureka.server.xxx的格式进行配置。

配置列表

  • enableSelfPreservation=true

是否开启自我保护

  • renewalPercentThreshold = 0.85

自我保护续约百分比阀值因子。如果实际续约数小于续约数阀值,则开启自我保护

  • renewalThresholdUpdateIntervalMs = 15 60 1000

续约数阀值更新频率。

  • peerEurekaNodesUpdateIntervalMs = 10 60 1000

Eureka Server节点更新频率。

  • enableReplicatedRequestCompression = false

是否启用复制请求压缩。

  • waitTimeInMsWhenSyncEmpty=5 60 1000

当从其他节点同步实例信息为空时等待的时间。

  • peerNodeConnectTimeoutMs=200

节点间连接的超时时间。

  • peerNodeReadTimeoutMs=200

节点间读取信息的超时时间。

  • peerNodeTotalConnections=1000

节点间连接总数。

  • peerNodeTotalConnectionsPerHost = 500;

单个节点间连接总数。

  • peerNodeConnectionIdleTimeoutSeconds = 30;

节点间连接空闲超时时间。

  • retentionTimeInMSInDeltaQueue = 3 * MINUTES;

增量队列的缓存时间。

  • deltaRetentionTimerIntervalInMs = 30 * 1000;

清理增量队列中过期的频率。

  • evictionIntervalTimerInMs = 60 * 1000;

剔除任务频率。

  • responseCacheAutoExpirationInSeconds = 180;

注册列表缓存超时时间(当注册列表没有变化时)

  • responseCacheUpdateIntervalMs = 30 * 1000;

注册列表缓存更新频率。

  • useReadOnlyResponseCache = true;

是否开启注册列表的二级缓存。

  • disableDelta=false。

是否为client提供增量信息。

  • maxThreadsForStatusReplication = 1;

状态同步的最大线程数。

  • maxElementsInStatusReplicationPool = 10000;

状态同步队列的最大容量。

  • syncWhenTimestampDiffers = true;

当时间差异时是否同步。

  • registrySyncRetries = 0;

注册信息同步重试次数。

  • registrySyncRetryWaitMs = 30 * 1000;

注册信息同步重试期间的时间间隔。

  • maxElementsInPeerReplicationPool = 10000;

节点间同步事件的最大容量。

  • minThreadsForPeerReplication = 5;

节点间同步的最小线程数。

  • maxThreadsForPeerReplication = 20;

节点间同步的最大线程数。

  • maxTimeForReplication = 30000;

节点间同步的最大时间,单位为毫秒。

  • disableDeltaForRemoteRegions = false;

是否启用远程区域增量。

  • remoteRegionConnectTimeoutMs = 1000;

远程区域连接超时时间。

  • remoteRegionReadTimeoutMs = 1000;

远程区域读取超时时间。

  • remoteRegionTotalConnections = 1000;

远程区域最大连接数

  • remoteRegionTotalConnectionsPerHost = 500;

远程区域单机连接数

  • remoteRegionConnectionIdleTimeoutSeconds = 30;

远程区域连接空闲超时时间。

  • remoteRegionRegistryFetchInterval = 30;

远程区域注册信息拉取频率。

  • remoteRegionFetchThreadPoolSize = 20;

远程区域注册信息线程数。

3.4-Eureka高可用

1587526769913.png

  1. 准备两个Eureka Server
  2. 分别进行配置,相互注册
  3. Eureka Client 分别注册到这两个 Eureka Server中

3.4.1-搭建

创建eureka-server-1

pom.xml

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-web</artifactId>
  5. </dependency>
  6. <!-- eureka-server -->
  7. <dependency>
  8. <groupId>org.springframework.cloud</groupId>
  9. <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  10. </dependency>
  11. </dependencies>

application.yml

  1. server:
  2. port: 8761
  3. eureka:
  4. instance:
  5. hostname: eureka-server1 # 主机名
  6. client:
  7. service-url:
  8. defaultZone: http://eureka-server2:8762/eureka
  9. register-with-eureka: true # 是否将自己的路径 注册到eureka上。eureka server 不需要的,eureka provider client 需要
  10. fetch-registry: true # 是否需要从eureka中抓取路径。eureka server 不需要的,eureka consumer client 需要
  11. spring:
  12. application:
  13. name: eureka-server-ha

Eureka1App

  1. package eureka;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
  5. @SpringBootApplication
  6. // 启用EurekaServer
  7. @EnableEurekaServer
  8. public class Eureka1App {
  9. public static void main(String[] args) {
  10. SpringApplication.run(Eureka1App.class,args);
  11. }
  12. }

创建eureka-server-2

pom.xml

  1. <dependencies>
  2. <dependency>
  3. <groupId>org.springframework.boot</groupId>
  4. <artifactId>spring-boot-starter-web</artifactId>
  5. </dependency>
  6. <!-- eureka-server -->
  7. <dependency>
  8. <groupId>org.springframework.cloud</groupId>
  9. <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  10. </dependency>
  11. </dependencies>

application.yml

  1. server:
  2. port: 8761
  3. eureka:
  4. instance:
  5. hostname: eureka-server1 # 主机名
  6. client:
  7. service-url:
  8. defaultZone: http://eureka-server2:8762/eureka
  9. register-with-eureka: true # 是否将自己的路径 注册到eureka上。eureka server 不需要的,eureka provider client 需要
  10. fetch-registry: true # 是否需要从eureka中抓取路径。eureka server 不需要的,eureka consumer client 需要
  11. spring:
  12. application:
  13. name: eureka-server-ha

Eureka2App

  1. package eureka;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
  5. @SpringBootApplication
  6. // 启用EurekaServer
  7. @EnableEurekaServer
  8. public class Eureka2App {
  9. public static void main(String[] args) {
  10. SpringApplication.run(Eureka2App.class,args);
  11. }
  12. }

修改本地host

1587527369390.png

1587527463048.png

3.4.2-客户端测试

修改服务提供者和服务消费者配置文件中的注册服务地址

eureka-provider application.yml

  1. server:
  2. port: 8001
  3. eureka:
  4. instance:
  5. hostname: localhost # 主机名
  6. prefer-ip-address: true # 将当前实例的ip注册到eureka server 中。默认是false 注册主机名
  7. ip-address: 127.0.0.1 # 设置当前实例的ip
  8. instance-id: ${eureka.instance.ip-address}:${spring.application.name}:${server.port} # 设置web控制台显示的 实例id
  9. lease-renewal-interval-in-seconds: 3 # 每隔3 秒发一次心跳包
  10. lease-expiration-duration-in-seconds: 9 # 如果9秒没有发心跳包,服务器呀,你把我干掉吧~
  11. client:
  12. service-url:
  13. defaultZone: http://eureka-server1:8761/eureka,http://eureka-server2:8762/eureka # eureka服务端地址,将来客户端使用该地址和eureka进行通信
  14. spring:
  15. application:
  16. name: eureka-provider # 设置当前应用的名称。将来会在eureka中Application显示。将来需要使用该名称来获取路径

eureka-consumer application.yml

  1. server:
  2. port: 9000
  3. eureka:
  4. instance:
  5. hostname: localhost # 主机名
  6. client:
  7. service-url:
  8. defaultZone: http://eureka-server1:8761/eureka,http://eureka-server2:8762/eureka # eureka服务端地址,将来客户端使用该地址和eureka进行通信
  9. spring:
  10. application:
  11. name: eureka-consumer # 设置当前应用的名称。将来会在eureka中Application显示。将来需要使用该名称来获取路径

测试结果
1587527811851.png

3.5-Consul

3.5.1-Consul 概述

Consul 是由 HashiCorp 基于 Go 语言开发的,支持多数据中心,分布式高可用的服务发布和注册服务软件。
• 用于实现分布式系统的服务发现与配置。
• 使用起来也较 为简单。具有天然可移植性(支持Linux、windows和Mac OS X);安装包仅包含一个可执行文件,
方便部署 。
• 官网地址: https://www.consul.io

启动consul

1587528140341.png

dev模式:不会持久化数据

启动成功

1587528221446.png

控制台

1587528280115.png

3.5.2-Consul 快速入门

1587527962928.png

  1. 搭建 Provider 和 Consumer 服务。
  2. 使用 RestTemplate 完成远程调用。
  3. 将Provider服务注册到Consul中。
  4. Consumer 服务 通过从 Consul 中抓取 Provider 地
    址 完成 远程调用

Provider pom.xml

  1. <dependencies>
  2. <!--consul 客户端-->
  3. <dependency>
  4. <groupId>org.springframework.cloud</groupId>
  5. <artifactId>spring-cloud-starter-consul-discovery</artifactId>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-web</artifactId>
  10. </dependency>
  11. <dependency>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-test</artifactId>
  14. <scope>test</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-actuator</artifactId>
  19. </dependency>
  20. </dependencies>

application.yml

  1. server:
  2. port: 8000
  3. spring:
  4. cloud:
  5. consul:
  6. host: localhost # consul 服务端的 ip
  7. port: 8500 # consul 服务端的端口 默认8500
  8. discovery:
  9. service-name: ${spring.application.name} # 当前应用注册到consul的名称
  10. prefer-ip-address: true # 注册ip
  11. application:
  12. name: consul-provider # 应用名称

consumer pom.xml

  1. <dependencies>
  2. <!--consul 客户端-->
  3. <dependency>
  4. <groupId>org.springframework.cloud</groupId>
  5. <artifactId>spring-cloud-starter-consul-discovery</artifactId>
  6. </dependency>
  7. <dependency>
  8. <groupId>org.springframework.boot</groupId>
  9. <artifactId>spring-boot-starter-web</artifactId>
  10. </dependency>
  11. <dependency>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-test</artifactId>
  14. <scope>test</scope>
  15. </dependency>
  16. <dependency>
  17. <groupId>org.springframework.boot</groupId>
  18. <artifactId>spring-boot-starter-actuator</artifactId>
  19. </dependency>
  20. </dependencies>

application.yml

  1. server:
  2. port: 9000
  3. spring:
  4. cloud:
  5. consul:
  6. host: localhost # consul 服务端的 ip
  7. port: 8500 # consul 服务端的端口 默认8500
  8. discovery:
  9. service-name: ${spring.application.name} # 当前应用注册到consul的名称
  10. prefer-ip-address: true # 注册ip
  11. application:
  12. name: consul-consumer # 应用名称

OrderController

  1. package com.itheima.consul.controller;
  2. import com.itheima.consul.domain.Goods;
  3. import org.springframework.beans.factory.annotation.Autowired;
  4. import org.springframework.cloud.client.ServiceInstance;
  5. import org.springframework.cloud.client.discovery.DiscoveryClient;
  6. import org.springframework.web.bind.annotation.GetMapping;
  7. import org.springframework.web.bind.annotation.PathVariable;
  8. import org.springframework.web.bind.annotation.RequestMapping;
  9. import org.springframework.web.bind.annotation.RestController;
  10. import org.springframework.web.client.RestTemplate;
  11. import java.util.List;
  12. /**
  13. * 服务的调用方
  14. */
  15. @RestController
  16. @RequestMapping("/order")
  17. public class OrderController {
  18. @Autowired
  19. private RestTemplate restTemplate;
  20. @Autowired
  21. private DiscoveryClient discoveryClient;
  22. @GetMapping("/goods/{id}")
  23. public Goods findGoodsById(@PathVariable("id") int id){
  24. //演示discoveryClient 使用
  25. List<ServiceInstance> instances = discoveryClient.getInstances("consul-PROVIDER");
  26. //判断集合是否有数据
  27. if(instances == null || instances.size() == 0){
  28. //集合没有数据
  29. return null;
  30. }
  31. ServiceInstance instance = instances.get(0);
  32. String host = instance.getHost();//获取ip
  33. int port = instance.getPort();//获取端口
  34. System.out.println(host);
  35. System.out.println(port);
  36. String url = "http://"+host+":"+port+"/goods/findOne/"+id;
  37. // 3. 调用方法
  38. Goods goods = restTemplate.getForObject(url, Goods.class);
  39. return goods;
  40. }
  41. }

3.6-Nacos

3.6.1-Nacos 概述

Nacos(Dynamic Naming and Configuration Service) 是阿里巴巴2018年7月开源的项目。
• 它专注于服务发现和配置管理领域 致力于帮助您发现、配置和管理微服务。Nacos 支持几乎所有主流类型的“服
务”的发现、配置和管理。
• 一句话概括就是Nacos = Spring Cloud注册中心 + Spring Cloud配置中心。
• 官网:https://nacos.io/
• 下载地址: https://github.com/alibaba/nacos/releases

启动成功效果:

1587539056744.png

控制台登录

账号,密码:nacos

1587539128223.png

控制台页面

1587539185231.png

Spring cloud Alibaba 组件

1587539293670.png

3.6.2-Nacos 快速入门

nacos-provider pom.xml

  1. <dependencies>
  2. <!--nacos-->
  3. <dependency>
  4. <groupId>org.springframework.cloud</groupId>
  5. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  6. <version>0.2.2.RELEASE</version>
  7. </dependency>
  8. <dependency>
  9. <groupId>com.alibaba.nacos</groupId>
  10. <artifactId>nacos-client</artifactId>
  11. <version>1.1.0</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-test</artifactId>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-actuator</artifactId>
  25. </dependency>
  26. </dependencies>

application.yml

  1. server:
  2. port: 8000
  3. spring:
  4. cloud:
  5. nacos:
  6. discovery:
  7. server-addr: 127.0.0.1:8848 # 配置nacos 服务端地址
  8. application:
  9. name: nacos-provider # 服务名称

nacos consumer pom.xml

  1. <dependencies>
  2. <!--nacos-->
  3. <dependency>
  4. <groupId>org.springframework.cloud</groupId>
  5. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  6. <version>0.2.2.RELEASE</version>
  7. </dependency>
  8. <dependency>
  9. <groupId>com.alibaba.nacos</groupId>
  10. <artifactId>nacos-client</artifactId>
  11. <version>1.1.0</version>
  12. </dependency>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-web</artifactId>
  16. </dependency>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-test</artifactId>
  20. <scope>test</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-actuator</artifactId>
  25. </dependency>
  26. </dependencies>

application.yml

  1. server:
  2. port: 9000
  3. spring:
  4. cloud:
  5. nacos:
  6. discovery:
  7. server-addr: 127.0.0.1:8848 # 配置nacos 服务端地址
  8. application:
  9. name: nacos-consumer # 服务名称

控制台显示

1587539840011.png

详情页面

1587539884192.png

示例代码

1587539969096.png