Eureka
单节点pom.xml<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-eureka-server</artifactId></dependency>完整的pomxml<?xml
目录
Eureka
同类组件:Eureka , Consul , ZooKeeper,nacos等。
Eureka 分为server端和client端,各自负责功能如下
server 注册中心功能
- 服务注册表:记录各个微服务信息,例如服务名称,ip,端口等。
注册表提供 查询API(查询可用的微服务实例)和管理API(用于服务的注册和注销)。 - 服务注册与发现:注册:将微服务信息注册到注册中心。发现:查询可用微服务列表及其网络地址。
- 服务检查:定时检测已注册的服务,如发现某实例长时间无法访问,就从注册表中移除。
client 功能
- 注册:每个微服务启动时,将自己的网络地址等信息注册到注册中心,注册中心会存储(内存中)这些信息。
- 获取服务注册表:服务消费者从注册中心,查询服务提供者的网络地址,并使用该地址调用服务提供者,为了避免每次都查注册表信息,所以client会定时去server拉取注册表信息到缓存到client本地。
- 心跳:各个微服务与注册中心通过某种机制(心跳)通信,若注册中心长时间和服务间没有通信,就会注销该实例。
- 调用:实际的服务调用,通过注册表,解析服务名和具体地址的对应关系,找到具体服务的地址,进行实际调用。
Eureka 注册中心【单节点版本】
1、pom.xml
添加下面依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
完整的pomxml
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.it</groupId>
<artifactId>eureka</artifactId>
<version>1.0.0</version>
<name>eureka</name>
<description>微服务 Eureka 注册中心</description>
<properties>
<java.version>1.8</java.version>
<spring-cloud.version>Hoxton.SR7</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
2、application.yml
server:
port: 8901
eureka:
client:
#是否将自己注册到Eureka Server,默认为true。由于当前就是server,故而设置成false,表明该服务不会向eureka注册自己的信息
register-with-eureka: false
#是否从eureka server获取注册信息,默认为true。由于单节点,不需要同步其他节点数据,用false
fetch-registry: false
#设置服务注册中心的URL,用于client和server端交互
service-url:
defaultZone: http://localhost:8901/eureka/
3、启动类上添加注解
@EnableEurekaServer
package com.it.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);
}
}
4、启动项目
启动后访问: http://localhost:8901/
单机版注册中心,大功告成!
Eureka 注册中心【高可用版本】
高可用:可以通过运行多个Eureka server实例并相互注册的方式实现。Server节点之间会彼此增量地同步信息,从而确保节点中数据一致。
1、准备
准备2个节点部署eureka,也可以单机部署
以下内容为单机部署(实际生产中部署在不同机器节点上)
修改本机host文件(C:\Windows\System32\drivers\etc\hosts),单机部署时使用ip地址会有问题
# Copyright (c) 1993-2009 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
# localhost name resolution is handled within DNS itself.
# 127.0.0.1 localhost
# ::1 localhost
# 新添加两个不同节点
127.0.0.1 eureka1.com
127.0.0.1 eureka2.com
2、配置
2.1、节点1
spring:
application:
name: eureka-server
#web端口,服务是由这个端口处理rest请求的
server:
port: 8901
eureka:
#主机名,必填
instance:
hostname: eureka1.com
client:
#是否将自己注册到其他Eureka Server,默认为true 需要
register-with-eureka: true
#是否从eureka server获取注册信息,默认为true 需要
fetch-registry: true
#设置服务注册中心的URL,用于client和server端交流
#此节点应向其他节点发起请求
service-url:
defaultZone: http://eureka1.com:8901/eureka/,http://eureka2.com:8902/eureka/
2.2、节点2
spring:
application:
name: eureka-server
#web端口,服务是由这个端口处理rest请求的
server:
port: 8902
eureka:
#主机名,必填
instance:
hostname: eureka2.com
client:
#是否将自己注册到其他Eureka Server,默认为true 需要
register-with-eureka: true
#是否从eureka server获取注册信息,默认为true 需要
fetch-registry: true
#设置服务注册中心的URL,用于client和server端交流
#此节点应向其他节点发起请求
service-url:
defaultZone: http://eureka1.com:8901/eureka/,http://eureka2.com:8902/eureka/
3、启动项目
分别启动eureka1
和eureka2
,访问http://localhost:8901/
和http://localhost:8902/
eureka1
eureka2
如果页面显示如上图所示则eureka集群搭建成功,实际生产中通常搭建3台机器节点集群保证高可用
Eureka 服务注册
1、pom.xml
添加下面依赖
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
完整的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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.3.RELEASE</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.it</groupId>
<artifactId>produce</artifactId>
<version>1.0.0</version>
<name>produce</name>
<description>微服务 生产者 demo</description>
<properties>
<java.version>1.8</java.version>
<spring-cloud.version>Hoxton.SR7</spring-cloud.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-dependencies</artifactId>
<version>${spring-cloud.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
2、application.yml
spring:
application:
name: produce
server:
port: 9001
#注册中心
eureka:
client:
#设置服务注册中心的URL
service-url:
defaultZone: http://eureka1.com:8901/eureka/,http://eureka2.com:8902/eureka/
ps:不想注册,设置成false即可,实例演示结果:注册中心没有实例信息。找控制台204信息也没有找到。
spring:
cloud:
service-registry:
auto-registration:
enabled: false
3、启动项目
控制台信息显示注册成功!
页面也显示注册成功!
更多推荐
所有评论(0)