Eureka服务治理

  1. Eureka服务治理(服务注册及服务发现)
  2. Ribbon负载均衡
  3. Hystrix服务降级容错
  4. Feign声明式服务调用
  5. Zuul服务级切面拦截(API网关服务)
  6. Config分布式配置中心

一、Eureka服务治理

构建服务注册中心

服务注册:

每个服务单元向注册中心登记自己提供的服务,将主机与端口号、版本号、通信协议等一些附加信息告知注册中心,注册中心按服务名分类组织服务清单。
服务注册中心会以心跳的方式监测清单中的服务是否可用。

服务发现:

服务间的调用通过向服务名发起请求调用而非通过指定具体的实例地址。

服务注册中心构建流程

  1. 引入依赖坐标
    <dependencies>
		<dependency>
			<groupId>org.springframework.cloud</groupId>
			<artifactId>spring-cloud-starter-eureka-server</artifactId>
		</dependency>
	</dependencies>   
	<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>org.springframework.cloud</groupId>
				<artifactId>spring-cloud-dependencies</artifactId>
				<version>Brixton.SR5</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>
  1. 开启服务注册功能
    @EnableEurekaServer//此注解用于开启服务注册中心
    @SpringBootApplication
    public class Application {
    	public static void main(String[] args) {
    		new SpringApplicationBuilder(Application.class).web(true).run(args);
    	}

}
  1. 配置服务注册属性
    spring.application.name=eureka-server //服务名称
    server.port=1111//服务端口号
    
    eureka.instance.hostname=localhost//服务主机名
    eureka.client.register-with-eureka=false//默认true 设置为false代表不向注册中心注册自己(注册中心集群设置true)
    eureka.client.fetch-registry=false//默认true 是否检索服务,由于注册中心的职责为维护服务实例故而为false则不拉取提供者服务(注册中心集群设置true)
    eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/         服务的url

高可用注册中心

Eureka的服务治理设计中,所有节点既是服务提供方,也是服务消费方,服务注册中心也不例外

Eureka Server的高可用实际上就是将自身作为服务向其他服务注册中心注册自己,这样便可形成一组互相注册的服务注册中心,以实现服务清单的互相同步,达到高可用的效果。

让服务注册中心注册自己  a,b皆有
eureka.client.register-with-eureka=true//默认true
eureka.client.fetch-registry=true//默认true
注册中心a的配置
spring.application.name=eureka-server
server.port=1111
eureka.instance.hosthome=a #设置主机名为a  需要在/etc/hosts文件中添加对a和b的转换让配置的host形式serviceUrl能在本地正确访问到;Window系统路径为c;\Window\System32\drivers\etc\hosts   127.0.0.1  a  127.0.0.1 b
eureka.client.serviceUrl.defaultZone=http://b:1112/eureka/    #指定服务注册中心的地址
注册中心b的配置
spring.application.name=eureka-server
server.port=1112
eureka.instance.hosthome=b #设置主机名为b  
eureka.client.serviceUrl.defaultZone=http://a:1111/eureka/    #指定服务注册中心的地址

设置了多节点的服务注册中心之后,服务提供方需要配置多个节点的地址

spring.application.name=hello-server
eureka.client.serviceUrl.defaultZone=http://a:1111/eureka/,http://b:1112/eureka/

注意:若不想用主机名定义注册中心地址,亦可使用IP地址的形式,需要在配置文件中增加配置参数

    eureka.instance.prefer-ip-address=true//该值默认为false

服务注册与服务发现

常用注解:
    @EnableDiscoveryClient:服务发现注解(服务提供者)
    @EnableEurekaClient:服务发现注解
    @EnableEurekaServer:启动服务注册中心

服务提供者

  1. 依赖坐标
    只改变这个eureka-server改成eureka
    <dependency>
		<groupId>org.springframework.cloud</groupId>
		<artifactId>spring-cloud-starter-eureka</artifactId>
	</dependency>
  1. 注入DiscoveryClient对象可以获得服务的相关内容
  2. 在主类(启动类)添加@EnableDiscoveryClient注解,激活Eureka中的DiscoveryClient实现
  3. 配置属性
    命名服务名称
    spring.application.name=hello-service
    指定服务注册中心的地址
    eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/

服务消费者

服务消费者有两个目标,发现服务以及消费服务

  1. Ribbon
  2. Feign

很多时候,客户端既是服务提供者也是服务消费者

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值