当前位置:   article > 正文

Eureka2.0入门使用(跟B站周阳老师学习SpringCloud2.0笔记)

eureka2.0

1. 什么是Eureka

服务治理,服务注册与发现

2. 什么是服务治理

Spring Cloud封装了Netflix公司开发的Eureka模块来实现服务治理

在传统RPC远程调用框架中,管理每个服务与服务之间的依赖关系比较复杂,管理比较复杂,所以需要使用服务治理,管理服务与服务之间的依赖关系,可以实现服务调用、负载均衡、容错等、实现服务发现与注册。

3. 什么是服务注册与发现

Eureka采用了CS的设计架构,Eureka Server作为服务注册功能的服务器,它是服务注册中心。而系统中中的其他微服务,使用Eureka的客户端连接到Eureka Server并维持心跳连接。这样系统的维护人员可以通过Eureka Server来监控系统中各个微服务是否正常运行。

在服务注册与发现中,有一个注册中心。当服务器启动的时候,会把自己的服务器的信息 比如 服务器通讯地址等以别名的方式注册到注册中心上。另一方(消费者|服务提供者),以该别名的方式去注册中心上获取实际的通讯地址,然后再实现本地RPC调用RPC远程调用框架核心设计思想:在于注册中心,因为注册中心管理每个服务与每个服务之间的一个依赖关系(服务治理概念)。在任何RPC远程调用框架中,都会有一个注册中心(存放服务地址相关信息(接口地址))

4.  Eureka包含两个组件

4.1 Eureka Server

提供服务注册服务

各个微服务节点通过配置启动后,会在EurekaServer中进行注册,这样EurekaServer中的服务注册表中将会存储所有可用服务器的信息,服务节点的信息可以在界面中看到。

4.2 Eureka Client

是一个JAVA客户端,用于简化Eureka Server的交互,客户端也具备一个内置的,使用轮询(round-robin)负载算法的负载均衡器。在应用启动后,将会向Eureka Server发送心跳(默认周期为30秒)。如果Eureka Server在多个心跳周期内没有接收到某个节点的心跳,EurekaServer会从服务注册表中把这个服务节点移除(默认90秒)

5. Eureka服务端(Eureka Server)搭建

5.1 建moudel

项目名:cloud-eureka-server7001

5.2 改pom

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.    <parent>
  6.        <artifactId>mscloud03</artifactId>
  7.        <groupId>com.atguigu.springcloud</groupId>
  8.        <version>1.0-SNAPSHOT</version>
  9.    </parent>
  10.    <modelVersion>4.0.0</modelVersion>
  11.    <artifactId>cloud-eureka-server7001</artifactId>
  12.    <dependencies>
  13.        <!--eureka-server-->
  14.        <dependency>
  15.            <groupId>org.springframework.cloud</groupId>
  16.            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  17.        </dependency>
  18.        <!-- 引入自己定义的api通用包,可以使用Payment支付Entity -->
  19.        <dependency>
  20.            <groupId>com.atguigu.springcloud</groupId>
  21.            <artifactId>cloud-api-commons</artifactId>
  22.            <version>${project.version}</version>
  23.        </dependency>
  24.        <!--boot web actuator-->
  25.        <dependency>
  26.            <groupId>org.springframework.boot</groupId>
  27.            <artifactId>spring-boot-starter-web</artifactId>
  28.        </dependency>
  29.        <dependency>
  30.            <groupId>org.springframework.boot</groupId>
  31.            <artifactId>spring-boot-starter-actuator</artifactId>
  32.        </dependency>
  33.        <!--一般通用配置-->
  34.        <dependency>
  35.            <groupId>org.springframework.boot</groupId>
  36.            <artifactId>spring-boot-devtools</artifactId>
  37.            <scope>runtime</scope>
  38.            <optional>true</optional>
  39.        </dependency>
  40.        <dependency>
  41.            <groupId>org.projectlombok</groupId>
  42.            <artifactId>lombok</artifactId>
  43.        </dependency>
  44.        <dependency>
  45.            <groupId>org.springframework.boot</groupId>
  46.            <artifactId>spring-boot-starter-test</artifactId>
  47.            <scope>test</scope>
  48.        </dependency>
  49.        <dependency>
  50.            <groupId>junit</groupId>
  51.            <artifactId>junit</artifactId>
  52.        </dependency>
  53.    </dependencies>
  54. </project>

注意依赖

  1. <!-- 以前的老版本(当前使用2018)-->
  2. <dependency>
  3.     <groupId>org.springframework.cloud</groupId>
  4.     <artifactId>spring-cloud-starter-eureka</artifactId>
  5. </dependency>
  6. <!-- 现在新版本(当前使用2020.2) -->
  7. <dependency>
  8.    <groupId>org.springframework.cloud</groupId>
  9.    <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  10. </dependency>

5.4 改yml

server:
  port: 7001
​
eureka:
  instance:
    hostname: localhost #eureka服务端的实例名称
  client:
    #false表示不向注册中心注册自己。 因为是服务端,所以自己不需要注册自己
    register-with-eureka: false
    #false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
    fetch-registry: false
    service-url:
      #设置与Eureka Server交互的地址查询服务和注册服务都需要依赖这个地址。
      defaultZone: http://${eureka.instance.hostname}:${server.port}/eureka/

5.5 启动类新增注解

  1. package com.gzf.springcloud;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
  5. import org.springframework.context.annotation.Configuration;
  6. @SpringBootApplication
  7. @EnableEurekaServer //代表是EurekaServer服务端
  8. public class EurekaMain7001 {
  9.    public static void main(String[] args) {
  10.        SpringApplication.run(EurekaMain7001.class);
  11.   }
  12. }

6. Eureka客户端(Eureka Client)搭建

6.1 服务提供端

6.1.1 建moudel

名字:cloud-provider-payment8001

6.1.2 新增pom

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.    <parent>
  6.        <artifactId>cloud2020</artifactId>
  7.        <groupId>com.gzf.springcloud</groupId>
  8.        <version>1.0-SNAPSHOT</version>
  9.    </parent>
  10.    <modelVersion>4.0.0</modelVersion>
  11.    <artifactId>cloud-provider-payment8001</artifactId>
  12.    <properties>
  13.        <maven.compiler.source>8</maven.compiler.source>
  14.        <maven.compiler.target>8</maven.compiler.target>
  15.    </properties>
  16.    <dependencies>
  17.        <dependency>
  18.            <groupId>org.springframework.boot</groupId>
  19.            <artifactId>spring-boot-starter-web</artifactId>
  20.        </dependency>
  21.        <dependency>
  22.            <groupId>org.springframework.boot</groupId>
  23.            <artifactId>spring-boot-starter-actuator</artifactId>
  24.        </dependency>
  25.        <dependency>
  26.            <groupId>org.mybatis.spring.boot</groupId>
  27.            <artifactId>mybatis-spring-boot-starter</artifactId>
  28.        </dependency>
  29.        <dependency>
  30.            <groupId>com.alibaba</groupId>
  31.            <artifactId>druid-spring-boot-starter</artifactId>
  32.            <version>1.1.10</version>
  33.        </dependency>
  34.        <!--mysql-connector-java-->
  35.        <dependency>
  36.            <groupId>mysql</groupId>
  37.            <artifactId>mysql-connector-java</artifactId>
  38.        </dependency>
  39.        <!--jdbc-->
  40.        <dependency>
  41.            <groupId>org.springframework.boot</groupId>
  42.            <artifactId>spring-boot-starter-jdbc</artifactId>
  43.        </dependency>
  44.        <dependency>
  45.            <groupId>org.springframework.boot</groupId>
  46.            <artifactId>spring-boot-devtools</artifactId>
  47.            <scope>runtime</scope>
  48.            <optional>true</optional>
  49.        </dependency>
  50.        <dependency>
  51.            <groupId>org.projectlombok</groupId>
  52.            <artifactId>lombok</artifactId>
  53.            <optional>true</optional>
  54.        </dependency>
  55.        <dependency>
  56.            <groupId>org.springframework.boot</groupId>
  57.            <artifactId>spring-boot-starter-test</artifactId>
  58.            <scope>test</scope>
  59.        </dependency>
  60.        <dependency>
  61.            <groupId>com.gzf.springcloud</groupId>
  62.            <artifactId>cloud-api-commons</artifactId>
  63.            <version>1.0-SNAPSHOT</version>
  64.        </dependency>
  65.    </dependencies>
  66. <!-- 新增的依赖 Eureka客户端-->
  67.    <dependency>
  68.        <groupId>org.springframework.cloud</groupId>
  69.        <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  70.    </dependency>
  71. </project>

注意依赖

  1. <!-- 以前老版本,别再使用 -->
  2. <dependency>
  3.     <groupId>org.springframework.cloud</groupId>
  4.     <artifactId>spring-cloud-starter-eureka</artifactId>
  5. </dependency>
  6. <!-- 现在新版本,当前使用 -->
  7. <dependency>
  8.    <groupId>org.springframework.cloud</groupId>
  9.    <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  10. </dependency>

6.1.3 新增yml配置

server:
  port: 8001
​
spring:
  application:
    name: cloud-payment-service
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
    driver-class-name: com.mysql.jdbc.Driver              # mysql驱动包
    url: jdbc:mysql://localhost:3306/db2019?useUnicode=true&characterEncoding=utf-8&useSSL=false
    username: root
    password: 123456
mybatis:
  mapperLocations: classpath:mapper/*.xml
  type-aliases-package: com.atguigu.springcloud.entities    # 所有Entity别名类所在包
#新增Eureka配置
eureka:
  client:
    #表示是否将自己注册进EurekaServer默认为true。
    register-with-eureka: true
    #是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
    fetchRegistry: true
    service-url:
      defaultZone: http://localhost:7001/eureka

6.1.4 编写启动类

  1. package com.gzf.springcloud;
  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 // 新增注解 代表是EnableEureka的客户端
  7. public class PaymentMain8001 {
  8.    public static void main(String[] args) {
  9.        SpringApplication.run(PaymentMain8001.class);
  10.   }
  11. }

6.1.5 编写controller

  1. import com.gzf.springcloud.service.PaymentService;
  2. import jdk.nashorn.internal.runtime.logging.Logger;
  3. import lombok.extern.slf4j.Slf4j;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.beans.factory.annotation.Value;
  6. import org.springframework.cloud.client.ServiceInstance;
  7. import org.springframework.cloud.client.discovery.DiscoveryClient;
  8. import org.springframework.web.bind.annotation.*;
  9. import javax.annotation.Resource;
  10. import java.util.List;
  11. @RestController
  12. @Slf4j
  13. public class PaymentController{
  14. @GetMapping("/hello")
  15. public String getPaymentById() {
  16. return "Hello Eureka";
  17. }
  18. }

6.2 服务消费端

6.2.1 创建moudel

名称:cloud-consumer-order80

6.2.2 新增pom依赖

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.    <parent>
  6.        <artifactId>cloud2020</artifactId>
  7.        <groupId>com.gzf.springcloud</groupId>
  8.        <version>1.0-SNAPSHOT</version>
  9.    </parent>
  10.    <modelVersion>4.0.0</modelVersion>
  11.    <artifactId>cloud-consumer-order80</artifactId>
  12.    <properties>
  13.        <maven.compiler.source>8</maven.compiler.source>
  14.        <maven.compiler.target>8</maven.compiler.target>
  15.    </properties>
  16.    <dependencies>
  17.        <!-- 新增的依赖 代表是eureka客户端-->
  18.        <dependency>
  19.            <groupId>org.springframework.cloud</groupId>
  20.            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  21.        </dependency>
  22.        <dependency>
  23.            <groupId>org.springframework.boot</groupId>
  24.            <artifactId>spring-boot-starter-web</artifactId>
  25.        </dependency>
  26.        <dependency>
  27.            <groupId>org.springframework.boot</groupId>
  28.            <artifactId>spring-boot-starter-actuator</artifactId>
  29.        </dependency>
  30.        <dependency>
  31.            <groupId>org.springframework.boot</groupId>
  32.            <artifactId>spring-boot-devtools</artifactId>
  33.            <scope>runtime</scope>
  34.            <optional>true</optional>
  35.        </dependency>
  36.        <dependency>
  37.            <groupId>org.projectlombok</groupId>
  38.            <artifactId>lombok</artifactId>
  39.            <optional>true</optional>
  40.        </dependency>
  41.        <dependency>
  42.            <groupId>org.springframework.boot</groupId>
  43.            <artifactId>spring-boot-starter-test</artifactId>
  44.            <scope>test</scope>
  45.        </dependency>
  46.        <dependency>
  47.            <groupId>com.gzf.springcloud</groupId>
  48.            <artifactId>cloud-api-commons</artifactId>
  49.            <version>1.0-SNAPSHOT</version>
  50.        </dependency>
  51.    </dependencies>
  52. </project>

6.2.3 新增配置文件

# 端口号
server:
  port: 80
​
# 服务名称
spring:
  application:
    name: cloud-order-service
​
# eureka配置
eureka:
  client:
    #表示是否将自己注册进EurekaServer默认为true。
    register-with-eureka: true
    #是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
    fetchRegistry: true
    service-url:
      defaultZone: http://localhost:7001/eureka

6.2.4 启动类新增注解

  1. package com.gzf.springcloud;
  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 //新增注解 代表是Eureka客户端
  7. public class OrderMain80 {
  8.    public static void main(String[] args) {
  9.        SpringApplication.run(OrderMain80.class);
  10.   }
  11. }

6.2.5 编写配置类

  1. package com.gzf.springcloud.config;
  2. import org.springframework.cloud.client.loadbalancer.LoadBalanced;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.web.client.RestTemplate;
  6. /**
  7. 远程调用工具
  8. */
  9. @Configuration
  10. public class ApplicationContextConfig {
  11. @Bean
  12. public RestTemplate getRestTemplate(){
  13. return new RestTemplate();
  14. }
  15. }

6.2.6 编写Controller

  1. package com.gzf.springcloud.controller;
  2. import com.gzf.springcloud.entities.CommonResult;
  3. import com.gzf.springcloud.entities.Payment;
  4. import lombok.extern.slf4j.Slf4j;
  5. import org.springframework.http.ResponseEntity;
  6. import org.springframework.web.bind.annotation.*;
  7. import org.springframework.web.client.RestTemplate;
  8. import javax.annotation.Resource;
  9. @RestController
  10. @Slf4j
  11. public class OrderController {
  12. public static final String PAYMENT_URL="http://localhost:8001/";
  13. @GetMapping("/hello")
  14. public String getPaymentById() {
  15. return restTemplate.getForObject(PAYMENT_URL+"hello",String.class);
  16. }

7. Eureka集群

7.1 Eureka集群原理

总结来说:防止单点故障,实现高可用,即使一个Eureka宕机,其他的也可以使用

7.2 EurekaService 集群搭建

7.2.1 新建moudel

项目名:cloud-eureka-server7002

7.2.2 修改pom文件

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.    <parent>
  6.        <artifactId>cloud2020</artifactId>
  7.        <groupId>com.gzf.springcloud</groupId>
  8.        <version>1.0-SNAPSHOT</version>
  9.    </parent>
  10.    <modelVersion>4.0.0</modelVersion>
  11.    <artifactId>cloud-eureka-server7002</artifactId>
  12.    <properties>
  13.        <maven.compiler.source>8</maven.compiler.source>
  14.        <maven.compiler.target>8</maven.compiler.target>
  15.    </properties>
  16.    <dependencies>
  17.        <!--eureka-server-->
  18.        <dependency>
  19.            <groupId>org.springframework.cloud</groupId>
  20.            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
  21.        </dependency>
  22.        <!-- 引入自己定义的api通用包,可以使用Payment支付Entity -->
  23.        <dependency>
  24.            <groupId>com.gzf.springcloud</groupId>
  25.            <artifactId>cloud-api-commons</artifactId>
  26.            <version>1.0-SNAPSHOT</version>
  27.        </dependency>
  28.        <!--boot web actuator-->
  29.        <dependency>
  30.            <groupId>org.springframework.boot</groupId>
  31.            <artifactId>spring-boot-starter-web</artifactId>
  32.        </dependency>
  33.        <dependency>
  34.            <groupId>org.springframework.boot</groupId>
  35.            <artifactId>spring-boot-starter-actuator</artifactId>
  36.        </dependency>
  37.        <!--一般通用配置-->
  38.        <dependency>
  39.            <groupId>org.springframework.boot</groupId>
  40.            <artifactId>spring-boot-devtools</artifactId>
  41.            <scope>runtime</scope>
  42.            <optional>true</optional>
  43.        </dependency>
  44.        <dependency>
  45.            <groupId>org.projectlombok</groupId>
  46.            <artifactId>lombok</artifactId>
  47.        </dependency>
  48.        <dependency>
  49.            <groupId>org.springframework.boot</groupId>
  50.            <artifactId>spring-boot-starter-test</artifactId>
  51.            <scope>test</scope>
  52.        </dependency>
  53.        <dependency>
  54.            <groupId>junit</groupId>
  55.            <artifactId>junit</artifactId>
  56.        </dependency>
  57.    </dependencies>
  58. </project>

7.2.3 编写yml配置

注意一句话,互相注册,相互守望

两个erueka服务端看作一个整体,编写yml配置是关键,单机和集群的写法不一样

下图是以前单机的

但是现在是两台机器,如果两个eureka服务端的实例名称都叫做 localhost,分不清,容易出错,主机名字要有一点区分,既然相互注册,相互守望,那么7001就要注册到7002,7002就要注册到7001

修改yml之前,需要修改映射配置文件

修改映射配置文件

找到C:Windows\System32\drivers\etc路径下的hosts文件

修改文件

1. 修改7001配置文件

修改前

修改后

server:
  port: 7001
eureka:
  instance:
    hostname: eureka7001.com #eureka服务端的实例名称
  client:
    register-with-eureka: false     #false表示不向注册中心注册自己。
    fetch-registry: false     #false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
    service-url:
      defaultZone: http://eureka7002.com:7002/eureka/ #相互注册 相互守望

编写7002配置文件

server:
  port: 7002
eureka:
  instance:
    hostname: eureka7002.com #eureka服务端的实例名称
  client:
    register-with-eureka: false     #false表示不向注册中心注册自己。
    fetch-registry: false     #false表示自己端就是注册中心,我的职责就是维护服务实例,并不需要去检索服务
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka/ #相互注册 相互守望

7.2.4 编写启动类

  1. package com.gzf.springcloud;
  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. @EnableEurekaServer
  7. public class EurekaMain7002 {
  8.    public static void main(String[] args) {
  9.        SpringApplication.run(EurekaMain7002.class);
  10.   }
  11. }

7.2.5 效果图

7001效果图

7002效果图

互相注册,互相守望

7.2.6 将之前注册到7001的客户端注册到集群中

修改配置文件yml即可

80修改前

修改后

spring:
  application:
    name: cloud-order-service
eureka:
  client:
    #表示是否将自己注册进EurekaServer默认为true。
    register-with-eureka: true
    #是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
    fetchRegistry: true
    service-url:
      defaultZone:         http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka  # 集群版

8001修改

修改前

修改后

server:
  port: 8001
​
spring:
  application:
    name: cloud-payment-service
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
    driver-class-name: com.mysql.jdbc.Driver              # mysql驱动包
    url: jdbc:mysql://localhost:3306/db2019?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
    username: root
    password: 123456
​
#新增Eureka配置
​
eureka:
  client:
    #表示是否将自己注册进EurekaServer默认为true。
    register-with-eureka: true
    #是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
    fetchRegistry: true
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka  # 集群版
mybatis:
  mapperLocations: classpath:mapper/*.xml
  type-aliases-package: com.atguigu.springcloud.entities    # 所有Entity别名类所在包

7.3 微服务集群搭建(Eureka客户端)

7.3.1 为什么Eureka客户端要搭建集群

EurekaServer怕宕机,搭建集群实现高可用

EurekaClient也怕宕机,也需要搭建集群是高可用,防止单点故障

7.3.2 建moudel

名字:cloud-provider-payment8002 和 cloud-provider-payment8001 属于一个服务

7.3.3 改POM

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3.         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5.    <parent>
  6.        <artifactId>cloud2020</artifactId>
  7.        <groupId>com.gzf.springcloud</groupId>
  8.        <version>1.0-SNAPSHOT</version>
  9.    </parent>
  10.    <modelVersion>4.0.0</modelVersion>
  11.    <artifactId>cloud-provider-payment8002</artifactId>
  12.    <dependencies>
  13.        <!--eureka-client-->
  14.        <dependency>
  15.            <groupId>org.springframework.cloud</groupId>
  16.            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
  17.        </dependency>
  18.        <dependency><!-- 引入自己定义的api通用包,可以使用Payment支付Entity -->
  19.            <groupId>com.gzf.springcloud</groupId>
  20.            <artifactId>cloud-api-commons</artifactId>
  21.            <version>${project.version}</version>
  22.        </dependency>
  23.        <dependency>
  24.            <groupId>org.springframework.boot</groupId>
  25.            <artifactId>spring-boot-starter-web</artifactId>
  26.        </dependency>
  27.        <dependency>
  28.            <groupId>org.springframework.boot</groupId>
  29.            <artifactId>spring-boot-starter-actuator</artifactId>
  30.        </dependency>
  31.        <dependency>
  32.            <groupId>org.mybatis.spring.boot</groupId>
  33.            <artifactId>mybatis-spring-boot-starter</artifactId>
  34.        </dependency>
  35.        <dependency>
  36.            <groupId>com.alibaba</groupId>
  37.            <artifactId>druid-spring-boot-starter</artifactId>
  38.            <version>1.1.10</version>
  39.        </dependency>
  40.        <!--mysql-connector-java-->
  41.        <dependency>
  42.            <groupId>mysql</groupId>
  43.            <artifactId>mysql-connector-java</artifactId>
  44.        </dependency>
  45.        <!--jdbc-->
  46.        <dependency>
  47.            <groupId>org.springframework.boot</groupId>
  48.            <artifactId>spring-boot-starter-jdbc</artifactId>
  49.        </dependency>
  50.        <dependency>
  51.            <groupId>org.springframework.boot</groupId>
  52.            <artifactId>spring-boot-devtools</artifactId>
  53.            <scope>runtime</scope>
  54.            <optional>true</optional>
  55.        </dependency>
  56.        <dependency>
  57.            <groupId>org.projectlombok</groupId>
  58.            <artifactId>lombok</artifactId>
  59.            <optional>true</optional>
  60.        </dependency>
  61.        <dependency>
  62.            <groupId>org.springframework.boot</groupId>
  63.            <artifactId>spring-boot-starter-test</artifactId>
  64.            <scope>test</scope>
  65.        </dependency>
  66.    </dependencies>
  67. </project>

7.3.4 编写yml配置文件

server:
  port: 8002
​
spring:
  application:
    name: cloud-payment-service
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
    driver-class-name: org.gjt.mm.mysql.Driver              # mysql驱动包
    url: jdbc:mysql://localhost:3306/db2019?useUnicode=true&characterEncoding=utf-8&useSSL=false
    username: root
    password: 123456
​
eureka:
  client:
    #表示是否将自己注册进EurekaServer默认为true。
    register-with-eureka: true
    #是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
    fetchRegistry: true
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka  # 集群版
mybatis:
  mapperLocations: classpath:mapper/*.xml
  type-aliases-package: com.atguigu.springcloud.entities    # 所有Entity别名类所在包

注意:两个服务spring.application.name 服务实例名一致才能搭建集群,但端口号不能一致

7.3.5 新建启动类,搭建业务

7.3.6 集群搭建后效果图

7.3.7 调用问题

我们来到服务调用方,发现根本调用不到8002,因为路径是写死的,如何解决?

做负载均衡

7.3.8 负载均衡

修改80端配置类

  1. package com.gzf.springcloud.config;
  2. import org.springframework.cloud.client.loadbalancer.LoadBalanced;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.web.client.RestTemplate;
  6. @Configuration
  7. public class ApplicationContextConfig {
  8.   @Bean
  9.   @LoadBalanced //开启restTemplate负载均衡
  10.   public RestTemplate getRestTemplate(){
  11.         return new RestTemplate();
  12.   }
  13. }

新增注解 @LoadBalanced:开启restTemplate负载均衡

修改controller

  1. package com.gzf.springcloud.controller;
  2. import com.gzf.springcloud.entities.CommonResult;
  3. import com.gzf.springcloud.entities.Payment;
  4. import lombok.extern.slf4j.Slf4j;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.beans.factory.annotation.Value;
  7. import org.springframework.web.bind.annotation.*;
  8. import org.springframework.web.client.RestTemplate;
  9. import javax.annotation.Resource;
  10. import javax.print.DocFlavor;
  11. @RestController
  12. @Slf4j
  13. public class OrderController {
  14. ​        
  15. // public static final String PAYMENT_URL="http://localhost:8001/payment/";
  16. //将IP改成服务名
  17.    public static  final String PAYMENT_URL="http://CLOUD-PAYMENT-SERVICE:8001/payment/";
  18.    @Resource
  19.    private RestTemplate restTemplate;
  20.    @PostMapping("/hello")
  21.    public String create() {
  22.       return restTemplate.postForObject(PAYMENT_URL+"hello",payment,String.class);
  23.   }

将原来写死的URL修改成 服务实例名

7.3.9 Eureka显示问题

1. 显示主机名问题

可以配置隐藏,只暴露服务名,不暴露主机名(localhost)

修改服务提供者 8001,8002

yml配置文件 新增实例id: eureka.instance.instance-id

server:
  port: 8001
​
spring:
  application:
    name: cloud-payment-service
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
    driver-class-name: com.mysql.jdbc.Driver              # mysql驱动包
    url: jdbc:mysql://localhost:3306/db2019?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
    username: root
    password: 123456
​
#新增Eureka配置
eureka:
  client:
    #表示是否将自己注册进EurekaServer默认为true。
    register-with-eureka: true
    #是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
    fetchRegistry: true
    service-url:
      defaultZone: ttp://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka  # 集群版
  instance:
    instance-id: payment8001
mybatis:
  mapperLocations: classpath:mapper/*.xml
  type-aliases-package: com.atguigu.springcloud.entities    # 所有Entity别名类所在包

8002 按照这个改即可

修改后效果图

2. 访问信息无ip地址问题

1.修改服务提供者 8001,8002

新增实例id: eureka.instance.prefer-ip-address = true 新增 问路径可以显示IP地址 配置

server:
  port: 8001
​
spring:
  application:
    name: cloud-payment-service
  datasource:
    type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
    driver-class-name: com.mysql.jdbc.Driver              # mysql驱动包
    url: jdbc:mysql://localhost:3306/db2019?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=UTC
    username: root
    password: 123456
​
#新增Eureka配置
​
eureka:
  client:
    #表示是否将自己注册进EurekaServer默认为true。
    register-with-eureka: true
    #是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
    fetchRegistry: true
    service-url:
      defaultZone: ttp://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka  # 集群版
  instance:
    instance-id: payment8001
    prefer-ip-address: true     #访问路径可以显示IP地址
​
​
mybatis:
  mapperLocations: classpath:mapper/*.xml
  type-aliases-package: com.atguigu.springcloud.entities    # 所有Entity别名类所在包

2.修改后

8. 服务发现Discovery

8.1 什么是Discovery

就是一个新的注解标签叫@EnableDiscovery

现在我们已经完成了五个微服务的调用和实现

不排除微服务自身要对外提供一种功能,例如:我的IP是多少,我的服务名称是多少,我的端口号是多少。总体来说就是现在注册到Eureka这么多微服务,每个微服务他们各自的信息是什么?

总体来说就是:对于注册进eureka里面的微服务,可以通过服务发现来获取到该服务的信息

8.2 获取微服务信息

8.2.1 启动类添加注解

@EnableDiscoveryClient:代表开启Discovery 服务发现

  1. package com.gzf.springcloud;
  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. @SpringBootApplication
  7. @EnableEurekaClient // 代表是EnableEureka的客户端
  8. @EnableDiscoveryClient // 代表开启Discovery 服务发现
  9. public class PaymentMain8001 {
  10.    public static void main(String[] args) {
  11.        SpringApplication.run(PaymentMain8001.class);
  12.   }
  13. }

8.2.2 获取信息

  1. package com.gzf.springcloud.controller;
  2. import com.gzf.springcloud.entities.CommonResult;
  3. import com.gzf.springcloud.entities.Payment;
  4. import com.gzf.springcloud.service.PaymentService;
  5. import jdk.nashorn.internal.runtime.logging.Logger;
  6. import lombok.extern.slf4j.Slf4j;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.beans.factory.annotation.Value;
  9. import org.springframework.cloud.client.ServiceInstance;
  10. import org.springframework.cloud.client.discovery.DiscoveryClient;
  11. import org.springframework.web.bind.annotation.*;
  12. import javax.annotation.Resource;
  13. import java.util.List;
  14. @RestController
  15. @Slf4j
  16. public class PaymentController{
  17.    
  18.    //服务发现
  19.    @Resource
  20.    private DiscoveryClient discoveryClient;
  21.    @GetMapping(value = "/discovery")
  22.    public CommonResult<Object> discovery(){
  23.        //在这个eureka注册,登陆好的微服务有哪些
  24.        List<String> services = discoveryClient.getServices();
  25.        for (String service : services) {
  26.            log.info("service = " + service);
  27.       }
  28.        //在这个eureka注册的,此服务实例名称,有多少具体的ID可以获得(此时有两个8001和8002)
  29.        List<ServiceInstance> instances = discoveryClient.getInstances("CLOUD-PAYMENT-SERVICE");
  30.        for (ServiceInstance instance : instances) {
  31.            //服务ID 服务ip 端口号
  32.            log.info(instance.getServiceId()+"\t"+instance.getHost()+"\t"
  33.            +instance.getPort()+"\t");
  34.       }
  35.        return new CommonResult<>().success(this.discoveryClient);
  36.   }
  37. }

输出:

service = cloud-payment-service
service = cloud-order-service
CLOUD-PAYMENT-SERVICE   192.168.19.1    8001    
CLOUD-PAYMENT-SERVICE   192.168.19.1    8002   

JSON:

{
    "code": 200,
    "message": "",
    "data": {
        "services": [
            "cloud-payment-service",
            "cloud-order-service"
        ],
        "order": 0
    }
}

9. Eureka的自我保护机制

9.1 什么是自我保护机制?

看到这段话 就说明Eureka进入了自我保护机制,

某一时刻某一个微服务不能用了Eureka不会立刻清理,依旧会对服务信息进行保存,属于CAP里的AP分支

默认情况下,如果EurekaServer在一定时间内没有接收到某个微服务实例的心跳,EurekaServer将会注销该实例(默认90秒)。但是当网络分区故障发生(延时、卡顿、拥挤)时,微服务与EurekaServer之间无法正常通信,以上行为可能变得非常危险了——因为微服务本身其实是健康的,此时本不应该注销这个微服务。Eureka通过“自我保护模式”来解决这个问题——当EurekaServer节点在短时间内丢失过多客户端时(可能发生了网络分区故障),那么这个节点就会进入自我保护模式。

在自我保护模式中,Eureka Server会保护服务注册表中的信息,不再注销任何服务实例。 它的设计哲学就是宁可保留错误的服务注册信息,也不盲目注销任何可能健康的服务实例。

综上,自我保护模式是一种应对网络异常的安全保护措施。它的架构哲学是宁可同时保留所有微服务(健康的微服务和不健康的微服务都会保留)也不盲目注销任何健康的微服务。使用自我保护模式,可以让Eureka集群更加的健壮、稳定。

A:高可用

P:分区容错性

9.2 怎么禁止自动保护

9.2.1 EurekaServer默认设置

出厂默认是开启的

eureka.server.enable-self-preservation=true

9.2.2 EurekaServer修改配置文件

server:
  port: 7001
spring:
  application:
    name: eureka-cluster-server
eureka:
  instance:
    hostname: eureka7001.com
  client:
    register-with-eureka: false
    fetch-registry: false
    service-url:
      #defaultZone: http://eureka7002.com:7002/eureka,http://eureka7003.com:7003/eureka
      defaultZone: http://eureka7001.com:7001/eureka
  server:
    #关闭自我保护机制,保证不可用服务被及时踢除
       enable-self-preservation: false
    eviction-interval-timer-in-ms: 2000

9.2.3 EurekaClient 默认设置

eureka.instance.lease-renewal-interval-in-seconds=30
eureka.instance.lease-expiration-duration-in-seconds=90

9.2.4 EurekaClient修改配置文件

server:
  port: 8001
​
###服务名称(服务注册到eureka名称)
spring:
    application:
        name: cloud-provider-payment
​
eureka:
  client: #服务提供者provider注册进eureka服务列表内
    service-url:
      register-with-eureka: true
      fetch-registry: true
      # cluster version
      #defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka,http://eureka7003.com:7003/eureka
      # singleton version
      defaultZone: http://eureka7001.com:7001/eureka
#心跳检测与续约时间
#开发时设置小些,保证服务关闭后注册中心能即使剔除服务
  instance:
  #Eureka客户端向服务端发送心跳的时间间隔,单位为秒(默认是30秒)
    lease-renewal-interval-in-seconds: 1
  #Eureka服务端在收到最后一次心跳后等待时间上限,单位为秒(默认是90秒),超时将剔除服务
    lease-expiration-duration-in-seconds: 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/794200
推荐阅读
相关标签
  

闽ICP备14008679号