HM-SpringCloud微服务系列1.4【Eureka注册中心】

1 Eureka的结构和作用

1-1 远程服务调用存在的问题

image
在上个案例中通过url硬编码进行了远程服务调用
image

1-2 Eureka的结构与作用

image
image
image
image

2 搭建eureka-server(服务端)

image
image
image
image
image
image

image
image

server:
  port: 10086 # eureka服务服务端口(自定义)
spring:
  application:
    name: eureka-server # eureka服务名称
eureka:
  client:
    service-url: # eureka服务地址
      defaultZone: http://127.0.0.1:10086/eureka # 此处可配置集群,本地测试为单机
# 因为eureka自己也是一个微服务,所以启动eureka时会将自身也注册到eureka中
package cn.itcast.eureka;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;

@EnableEurekaServer
@SpringBootApplication
public class EurekaApplication {

    public static void main(String[] args) {
        SpringApplication.run(EurekaApplication.class, args);
    }
}

image
image
image

image

3 服务注册(客户端)

3-1 服务注册:引入依赖&配置地址

image
image
image
image
image
image
重启UserApplication和OrderApplication微服务
image

3-2 启动多个user-service实例

image
image
image
image
image
image
image

4 服务发现(服务拉取&负载均衡)

image
image
image
重启OrderApplication服务
image
image
发起两次请求测试负载均衡
image
image
image
image
image

posted @ 2022-01-09 11:28  yub4by  阅读(59)  评论(0编辑  收藏  举报