• SpringCloud进阶-负载均衡+actuator微服务信息完善+服务发现Discovery + Eureka的自我保护


    提示:本文主要对Eureka的actuator微服务信息完善和服务发现做总结


    前言

    提示:这里可以添加本文要记录的大概内容:

    本文主要对Eureka的actuator微服务信息完善和服务发现做总结


    提示:以下是本篇文章正文内容

    一、负载均衡

    1.1 实现

    如上文所示,改写OrderController的内容

    package com.atguigu.springcloud.controller;
    
    import com.atguigu.springcloud.entities.CommonResult;
    import com.atguigu.springcloud.entities.Payment;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.PathVariable;
    import org.springframework.web.bind.annotation.RestController;
    import org.springframework.web.client.RestTemplate;
    
    import javax.annotation.Resource;
    
    @RestController
    @Slf4j
    public class OrderController {
        @Resource
        private RestTemplate restTemplate;
    
        public static final String PAYMENT_URL = "http://CLOUD-PAYMENT-SERVICE";
    
        @GetMapping("/consumer/payment/create")
        public CommonResult<Payment> create(Payment payment){
    
            return restTemplate.postForObject(PAYMENT_URL+"/payment/create", payment, CommonResult.class);
        }
    
        @GetMapping("/consumer/payment/get/{id}")
        public CommonResult<Payment> getPayment(@PathVariable("id") Long id){
            return restTemplate.getForObject(PAYMENT_URL+"/payment/get/"+id, CommonResult.class);
        }
    
    }
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35

    此时再测试:http://localhost/consumer/payment/get/1
    在这里插入图片描述
    这又是什么情况?

    现在注册中心不再是暴露出具体的端口号,而是微服务名称 CLOUD-PAYMENT-SERVICE,但是这个微服务名称代表的集群中有很多个,比如8001、8002…用哪个,它并不知道
    在这里插入图片描述
    我们需要再配置一下负载均衡

    @LoadBalanced 注解赋予 RestTemplate 负载均衡的能力

    cloud-consumer-order80

    ApplicationContextConfig.java:

    package com.atguigu.springcloud.config;
    
    @Configuration
    public class ApplicationContextConfig {
    
        @Bean
        @LoadBalanced //使用@LoadBalanced注解赋予RestTemplate负载均衡的能力
        public RestTemplate restTemplate() {
            return new RestTemplate();
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    1.2 测试

    第一次
    在这里插入图片描述
    第二次
    在这里插入图片描述
    负载均衡效果达到,8001/8002端口交替出现

    二、actuator微服务信息完善

    2.1 主机名称:服务名称修改

    (1)当前问题

    查看当前主机名:
    在这里插入图片描述
    访问网站
    http://eureka7001.com:7001/
    在这里插入图片描述
    问题出现:含有主机名称

    (2)修改8001和8002

    8001:

    application.yml

    instance:
      instance-id: payment8001
    
    • 1
    • 2
    server:
      port: 8001
    
    spring:
      application:
        name: cloud-payment-service
      datasource:
        type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
        driver-class-name: com.mysql.cj.jdbc.Driver              # mysql驱动包
        url: jdbc:mysql://localhost:3306/mydb111?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8
        username: root
        password: 123456
    
    
    mybatis:
      mapperLocations: classpath:mapper/*.xml
      type-aliases-package: com.atguigu.springcloud.entities    # 所有Entity别名类所在包
    
    eureka:
      client:
        register-with-eureka: true  #表示将自己注册进Eureka Server
        fetch-registry: true        #表示是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
        service-url:
          defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka
      instance:
        instance-id: payment8001
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29

    同理,8002:
    application.yml:

    instance:
      instance-id: payment8002
    
    • 1
    • 2
    server:
      port: 8002
    
    spring:
      application:
        name: cloud-payment-service
      datasource:
        type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
        driver-class-name: com.mysql.cj.jdbc.Driver              # mysql驱动包
        url: jdbc:mysql://localhost:3306/mydb111?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8
        username: root
        password: 123456
    
    
    mybatis:
      mapperLocations: classpath:mapper/*.xml
      type-aliases-package: com.atguigu.springcloud.entities    # 所有Entity别名类所在包
    
    eureka:
      client:
        register-with-eureka: true  #表示将自己注册进Eureka Server
        fetch-registry: true        #表示是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
        service-url:
          defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka
      instance:
        instance-id: payment8002
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28

    再测试:

    http://eureka7001.com:7001/
    
    • 1

    在这里插入图片描述
    在这里插入图片描述

    2.2 访问信息有IP信息提示

    (1)当前问题

    没有IP提示:
    在这里插入图片描述

    (2)修改8001和8002

    application.yml:

    prefer-ip-address: true     #访问路径可以显示IP地址
    
    
    • 1
    • 2

    8001:

    server:
      port: 8001
    
    spring:
      application:
        name: cloud-payment-service
      datasource:
        type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
        driver-class-name: com.mysql.cj.jdbc.Driver              # mysql驱动包
        url: jdbc:mysql://localhost:3306/mydb111?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8
        username: root
        password: 123456
    
    
    mybatis:
      mapperLocations: classpath:mapper/*.xml
      type-aliases-package: com.atguigu.springcloud.entities    # 所有Entity别名类所在包
    
    eureka:
      client:
        register-with-eureka: true  #表示将自己注册进Eureka Server
        fetch-registry: true        #表示是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
        service-url:
          defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka
      instance:
        instance-id: payment8001
        prefer-ip-address: true     #访问路径可以显示IP地址
    
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31

    8002:

    server:
      port: 8002
    
    spring:
      application:
        name: cloud-payment-service
      datasource:
        type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
        driver-class-name: com.mysql.cj.jdbc.Driver              # mysql驱动包
        url: jdbc:mysql://localhost:3306/mydb111?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8
        username: root
        password: 123456
    
    
    mybatis:
      mapperLocations: classpath:mapper/*.xml
      type-aliases-package: com.atguigu.springcloud.entities    # 所有Entity别名类所在包
    
    eureka:
      client:
        register-with-eureka: true  #表示将自己注册进Eureka Server
        fetch-registry: true        #表示是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
        service-url:
          defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka
      instance:
        instance-id: payment8002
        prefer-ip-address: true     #访问路径可以显示IP地址
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30

    (3)测试

    在这里插入图片描述
    在这里插入图片描述
    在这里插入图片描述

    三、服务发现Discovery

    在这里插入图片描述

    对于注册进eureka里面的微服务,可以通过服务发现来获得该服务的信息
    在这里插入图片描述

    3.1 修改8001和8002的Controller

    加上

    @Resource
    private DiscoveryClient discoveryClient;
    
    @GetMapping(value = "/discovery")
    public Object discovery() {
        List<String> services = discoveryClient.getServices();
        for (String service : services) {
            log.info("service:{}", service);
        }
        List<ServiceInstance> instances = discoveryClient.getInstances("CLOUD-PAYMENT-SERVICE");
        for (ServiceInstance instance : instances) {
            log.info(instance.getServiceId() + "\t" + instance.getHost() + "\t" + instance.getPort() + "\t"
                     + instance.getUri());
        }
        return this.discoveryClient;
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    8001的controller:

    package com.atguigu.springcloud.controller;
    
    import com.atguigu.springcloud.entities.CommonResult;
    import com.atguigu.springcloud.entities.Payment;
    import com.atguigu.springcloud.service.PaymentService;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.cloud.client.ServiceInstance;
    import org.springframework.cloud.client.discovery.DiscoveryClient;
    import org.springframework.web.bind.annotation.*;
    import javax.annotation.Resource;
    import java.util.List;
    
    /**
     */
    @RestController
    @Slf4j
    public class PaymentController{
        @Resource
        private PaymentService paymentService;
    
        @Value("${server.port}")
        private String serverPort;
    
        @Resource
        private DiscoveryClient discoveryClient;
    
        @GetMapping(value = "/payment/discovery")
        public Object discovery() {
            List<String> services = discoveryClient.getServices();
            for (String service : services) {
                log.info("service:{}", service);
            }
            List<ServiceInstance> instances = discoveryClient.getInstances("CLOUD-PAYMENT-SERVICE");
            for (ServiceInstance instance : instances) {
                log.info(instance.getServiceId() + "\t" + instance.getHost() + "\t" + instance.getPort() + "\t"
                        + instance.getUri());
            }
            return this.discoveryClient;
        }
    
    
    
        @PostMapping(value = "/payment/create")
        public CommonResult create(@RequestBody Payment payment) {//此处一定要加@RequestBody,否则80调用8001时,无法传递数据
            log.info("前端传递数据:"+payment);
            int result = paymentService.create(payment);
            log.info("************************插入结果:" +result);
            if (result > 0) {
                return new CommonResult(200,"插入数据库成功,serverPort为: "+serverPort,result);
            } else {
                return new CommonResult(444,"插入数据库失败,serverPort为: "+serverPort, null);
            }
        }
    
        @GetMapping(value = "/payment/get/{id}")
        public CommonResult<Payment> getPaymentById(@PathVariable("id") Long id) {
            Payment payment = paymentService.getPaymentById(id);
            log.info("*************************查询结果:" +payment);
            if (payment != null) {
                return new CommonResult(200, "查询成功,serverPort为: "+serverPort, payment);
            } else {
                return new CommonResult(445,"没有对应id: "+id+" 的记录,serverPort为: "+serverPort, null);
            }
        }
    }
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69

    8002的controller

    package com.atguigu.springcloud.controller;
    
    import com.atguigu.springcloud.entities.CommonResult;
    import com.atguigu.springcloud.entities.Payment;
    import com.atguigu.springcloud.service.PaymentService;
    import lombok.extern.slf4j.Slf4j;
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.cloud.client.ServiceInstance;
    import org.springframework.cloud.client.discovery.DiscoveryClient;
    import org.springframework.web.bind.annotation.*;
    import javax.annotation.Resource;
    import java.util.List;
    
    /**
     */
    @RestController
    @Slf4j
    public class PaymentController{
        @Resource
        private PaymentService paymentService;
    
        @Value("${server.port}")
        private String serverPort;
    
        @Resource
        private DiscoveryClient discoveryClient;
    
        @GetMapping(value = "/payment/discovery")
        public Object discovery() {
            List<String> services = discoveryClient.getServices();
            for (String service : services) {
                log.info("service:{}", service);
            }
            List<ServiceInstance> instances = discoveryClient.getInstances("CLOUD-PAYMENT-SERVICE");
            for (ServiceInstance instance : instances) {
                log.info(instance.getServiceId() + "\t" + instance.getHost() + "\t" + instance.getPort() + "\t"
                        + instance.getUri());
            }
            return this.discoveryClient;
        }
    
    
    
        @PostMapping(value = "/payment/create")
        public CommonResult create(@RequestBody Payment payment) {//此处一定要加@RequestBody,否则80调用8001时,无法传递数据
            log.info("前端传递数据:"+payment);
            int result = paymentService.create(payment);
            log.info("************************插入结果:" +result);
            if (result > 0) {
                return new CommonResult(200,"插入数据库成功,serverPort为: "+serverPort,result);
            } else {
                return new CommonResult(444,"插入数据库失败,serverPort为: "+serverPort, null);
            }
        }
    
        @GetMapping(value = "/payment/get/{id}")
        public CommonResult<Payment> getPaymentById(@PathVariable("id") Long id) {
            Payment payment = paymentService.getPaymentById(id);
            log.info("*************************查询结果:" +payment);
            if (payment != null) {
                return new CommonResult(200, "查询成功,serverPort为: "+serverPort, payment);
            } else {
                return new CommonResult(445,"没有对应id: "+id+" 的记录,serverPort为: "+serverPort, null);
            }
        }
    }
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69

    3.2 主启动类

    8001:

    package com.atguigu.springcloud;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
    import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
    
    @SpringBootApplication
    @EnableEurekaClient
    @EnableDiscoveryClient //服务发现
    public class PaymentMain8001 {
        public static void main(String[] args) {
            SpringApplication.run(PaymentMain8001.class,args);
        }
    }
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    8002

    package com.atguigu.springcloud;
    
    import org.springframework.boot.SpringApplication;
    import org.springframework.boot.autoconfigure.SpringBootApplication;
    import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
    import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
    
    @SpringBootApplication
    @EnableEurekaClient
    @EnableDiscoveryClient //服务发现
    public class PaymentMain8002 {
        public static void main(String[] args) {
            SpringApplication.run(PaymentMain8002.class,args);
        }
    }
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    3.3 测试

    输入:

    http://localhost:8001/payment/discovery
    
    • 1

    在这里插入图片描述

    就通过/payment/discovery 暴露给对方自身的服务信息。
    在这里插入图片描述
    在这里插入图片描述

    四、Eureka的自我保护机制

    4.1 概述

    1 自我保护概述:
    
    	保护模式主要用于一组客户端和EurekaServer之间存在网络分区场景下的保护。
    一旦进入保护模式,EurekaServer将会尝试保护其服务注册表中的信息,不再删除服务注册表中的数据,
    也就是不会注销任何微服务。
    	为了防止EurekaClient可以正常运行,但与EurekaServer网络不同的情况下,EurekaServer不会立即将
    EurekaClient服务剔除。
    	默认情况下,当EurekaServer在一定时间内没有收到服务实例的心跳,便会将该服务实例从注册表中删除,但要是在短时间内丢失大量的服务实例心跳,便会触发EurekaServer的自我保护机制。
    	可以在Eureka管理界面看到Renews threshold和Renews(last min),
    当后者(最后一分钟收到的心跳数)小于前者(心跳阈值)的时候,触发保护机制,会出现红色的警告。
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    在这里插入图片描述
    如果在EurekaServer的首页看到以下这段提示,则说明Eureka进入了保护模式:
    在这里插入图片描述

    4.2 导致原因

    为什么会产生Eureka自我保护机制?

    为了防止EurekaClient可以正常运行,但是 与 EurekaServer网络不通情况下,EurekaServer不会立刻将EurekaClient服务剔除
    
    • 1

    什么是自我保护模式?

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

    在这里插入图片描述
    在自我保护模式中,Eureka Server会保护服务注册表中的信息,不再注销任何服务实例。

    	它的设计哲学就是宁可保留错误的服务注册信息,也不盲目注销任何可能健康的服务实例。一句话讲解:
    好死不如赖活着
    
    综上,自我保护模式是一种应对网络异常的安全保护措施。它的架构哲学是宁可同时保留所有微服务(健康的微服务和不健康的微服务都会保留)也不盲目注销任何健康的微服务。
    使用自我保护模式,可以让Eureka集群更加的健壮、稳定。
    
    一句话:某时刻某一个微服务不可用了,Eureka不会立刻清理,依旧会对该微服务的信息进行保存
    
    属于CAP里面的AP分支
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    4.3 怎么禁止自我保护

    现在可以不用集群版了,只用开一个,在 application.yml 中把集群配置改为单机版

    (1) 注册中心eureakeServer端7001

    出厂默认,自我保护机制是开启的 eureka.server.enable-self-preservation=true,使用eureka.server.enable-self-preservation = false 可以禁用自我保护模式
    application.yml:

    server:
      #关闭自我保护机制,保证不可用服务被及时踢除
      enable-self-preservation: false
      eviction-interval-timer-in-ms: 2000
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    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/
      server:
        #关闭自我保护机制,保证不可用服务被及时踢除
        enable-self-preservation: false
        eviction-interval-timer-in-ms: 2000
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    以上配置后,若服务被手动停掉,过了心跳等待时间后,EurekaServer就会将服务立即剔除。

    关闭效果:

    http://eureka7001.com:7001/
    
    • 1

    在这里插入图片描述

    (2)生产者客户端eureakeClient端8001

    默认配置:

    eureka.instance.lease-renewal-interval-in-seconds=30 #单位为秒(默认是30秒)
    eureka.instance.lease-expiration-duration-in-seconds=90 #单位为秒(默认是90秒)
    
    
    • 1
    • 2
    • 3

    配置:

    #Eureka客户端向服务端发送心跳的时间间隔,单位为秒(默认是30秒)
    lease-renewal-interval-in-seconds: 1
    #Eureka服务端在收到最后一次心跳后等待时间上限,单位为秒(默认是90秒),超时将剔除服务
    lease-expiration-duration-in-seconds: 2
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    server:
      port: 8001
    
    spring:
      application:
        name: cloud-payment-service
      datasource:
        type: com.alibaba.druid.pool.DruidDataSource            # 当前数据源操作类型
        driver-class-name: com.mysql.cj.jdbc.Driver              # mysql驱动包
        url: jdbc:mysql://localhost:3306/mydb111?useUnicode=true&characterEncoding=utf-8&useSSL=false&serverTimezone=GMT%2B8
        username: root
        password: 123456
    
    
    mybatis:
      mapperLocations: classpath:mapper/*.xml
      type-aliases-package: com.atguigu.springcloud.entities    # 所有Entity别名类所在包
    
    eureka:
      client:
        register-with-eureka: true  #表示将自己注册进Eureka Server
        fetch-registry: true        #表示是否从EurekaServer抓取已有的注册信息,默认为true。单节点无所谓,集群必须设置为true才能配合ribbon使用负载均衡
        service-url:
          #defaultZone: http://localhost:7001/eureka 单机版
          defaultZone: http://eureka7001.com:7001/eureka,http://eureka7002.com:7002/eureka
      instance:
        instance-id: payment8001
        prefer-ip-address: true     #访问路径可以显示IP地址
        #Eureka客户端向服务端发送心跳的时间间隔,单位为秒(默认是30秒)
        lease-renewal-interval-in-seconds: 1
        #Eureka服务端在收到最后一次心跳后等待时间上限,单位为秒(默认是90秒),超时将剔除服务
        lease-expiration-duration-in-seconds: 2
    
    
    
    
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37

    测试:

    7001和8001都配置完成,先启动7001再启动8001

    http://eureka7001.com:7001/

    停掉8001进行测试:
    模拟8001出现了故障关闭了,以前7001还会保留,但是现在:
    在这里插入图片描述

  • 相关阅读:
    我们又组织了一次欧洲最大开源社区活动,Hugging Face 博客欢迎社区成员发帖、Hugging Chat 功能更新!...
    Hexagon_V65_Programmers_Reference_Manual(42)
    HTTP协议格式、URL格式及URL encode
    ubuntu20.10 Qt4.8.7 kits 设置全志Lctech Pi V3s arm交叉编译工具
    golang取整
    【每日一题】636. 函数的独占时间
    计算机毕业设计Java高校微后勤服务平台(源码+系统+mysql数据库+Lw文档)
    【Windows】安装win10虚拟机
    leetcode数学思想
    Python基于HRHet的跌倒检测系统(源码&教程)
  • 原文地址:https://blog.csdn.net/qq_40733968/article/details/125618432