Spring Cloud Eureka快读入门Demo

1.什么是Eureka?

Eureka 由 Netflix 开发,是一种基于REST(Representational State Transfer)的服务,用于定位服务(服务注册与发现),以实现中间层服务的负载均衡和故障转移,此服务被称为 Eureka Server。同时,它还附带了基于 Java 的客户端组件:Eureka Client,它使得客户端与 Eureka Server 的交互变得更加的容易。 以下就是一个简单的服务调用过程:

  1. 由服务提供方将服务注册到 Eureka Server

  2. 服务消费者通过 Eureka Server 获取服务提供方的真实地址

  3. 服务消费者通过真实的地址调用服务

2.代码工程

实验目的

搭建Eureka集群

pom.xml

<?xml version="1.0" encoding="UTF-8"?><project xmlns="http://maven.apache.org/POM/4.0.0"         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <parent>        <artifactId>eureka</artifactId>        <groupId>com.et</groupId>        <version>1.0-SNAPSHOT</version>    </parent>    <modelVersion>4.0.0</modelVersion>
<artifactId>eureka-server</artifactId>
<properties> <maven.compiler.source>8</maven.compiler.source> <maven.compiler.target>8</maven.compiler.target> </properties> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId> <version>${eureka.version}</version> </dependency> </dependencies>
</project>

EurekaServerApplication

package com.et.eureka;
import org.springframework.boot.SpringApplication;import org.springframework.boot.autoconfigure.SpringBootApplication;import org.springframework.cloud.netflix.eureka.server.EnableEurekaServer;
@EnableEurekaServer@SpringBootApplicationpublic class EurekaServerApplication {
public static void main(String[] args) { SpringApplication.run(EurekaServerApplication.class, args); }}

节点1配置信息

server:  port: 8761
eureka: instance: hostname: node1 # eureka name prefer-ip-address: false client: fetch-registry: false register-with-eureka: true # eureka url service-url: defaultZone: http://node2:8762/eurekaspring: application: name: "eureka-server-ha"

节点2配置信息

server:  port: 8762
eureka: instance: hostname: node2 # eureka name prefer-ip-address: false client: fetch-registry: false register-with-eureka: true # eureka url service-url: defaultZone: http://node1:8761/eurekaspring: application: name: "eureka-server-ha"

配置本机host

/etc/hosts

127.0.0.1 node1127.0.0.1 node2

以上只是一些关键代码,所有代码请参见下面代码仓库

代码仓库

  • https://github.com/Harries/springcloud-demo

3.测试

启动node1,node2

访问http://127.0.0.1:8761/

4.引用

  • https://docs.spring.io/spring-cloud-netflix/docs/current/reference/html/#service-discovery-eureka-clients

  • https://nicklee1006.github.io/Spring-Cloud-3-Eureka-Clustering/

  • http://www.liuhaihua.cn/archives/710895.html

相关推荐

  • 菊花开!!!带您深入菊花链
  • 6步!!!用 Electron开发一个记事本
  • 113K Star微软甄选!!!用这个框架开发百万人爱的VSCode
  • 月之暗面新活:Kimi浏览器插件
  • 聪明的大模型都认为9.11 大于 9.9……
  • AMD与国产AI芯势力创始人领衔!2024全球AI芯片峰会首批嘉宾公布,报名正式开启
  • 顶级AI投资人发起中国大模型群聊:十大趋势、具身智能、AI超级应用
  • 一年变现1500w,如何从0-1做一家小吃加盟店?
  • 博客园再次发出求救信
  • 牛皮!我被银行码农的工资惊到了
  • 前端 lockfile 合并冲突,如何正确地处理?
  • 【议题征集】2024 Hong Kong RISC-V Day 来了!
  • KubeCon+CloudNativeCon首次亮相香港,Jim Zemlin、Linus Torvalds引领行业巨擘共襄盛举
  • 什么赛博码农——脑机接口让脑出血“码农”重返岗位
  • 一个令人惊艳的 AI 开源神器,诞生了!
  • 专为 Excel 而生!微软推出新 AI 模型,网友:会计师和数据分析师,危?
  • 下半年,必须要干点大项目了
  • 绕晕了!9.11 大还是 9.9 大,难倒一批 AI 大模型?
  • 大模型集体失智!9.11比9.9大?全员翻车!
  • 曾年入140亿的巨头,要破产了