spring Cloud之服务治理篇

简介: 服务治理介绍服务治理可以说是微服务中最为核心和基础的模块,主要用来实现各个微服务的自动化注册和发现。服务注册介绍 在服务治理框架中,通常都会构建一个注册中心,每个服务单元向注册中心登记自己提供的服务,将主机和端口号、 版本号、通讯协议等一些附加信息告知注册中心。

服务治理介绍

服务治理可以说是微服务中最为核心和基础的模块,主要用来实现各个微服务的自动化注册和发现。

服务注册介绍

  在服务治理框架中,通常都会构建一个注册中心,每个服务单元向注册中心登记自己提供的服务,将主机和端口号、
  版本号、通讯协议等一些附加信息告知注册中心。注册中心按服务名分类组织服务清单。
  服务注册中心还需要以心跳的方式去监测清单中的服务是否可用,不可用则从服务清单中剔除,以此达到排除故障服务。
  • 以下示例:
    image

服务发现介绍

  服务调用方在调用服务提供方的接口时,并不知道具体的实例服务地址,因此,服务调用方需要向服务注册中心咨询服务。
  并获得所有的服务实例清单,以实现对具体服务实例的访问。

Netflix Eureka介绍

  spring cloud Eureka使用Netflix Eureka来实现服务注册和发现。Eureka包含了服务端组件同时也包含了客户端组件。

搭建服务注册中心

创建springboot项目

  • pom.xml引入spring-cloud-*响应的包

      <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
        </dependency>
    <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>

application.properties配置

   server.port=1111
  eureka.instance.hostname=localhost
  //由于该应用为注册中心所以设置为false,表示不能向注册中心注册自己
  eureka.client.register-with-eureka=false
  //由于注册中心的职责就是维护服务实例,不需要去检索服务,也设置为false
  eureka.client.fetch-registry=false
  eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka/

springboot项目启动类加注解

  @EnableEurekaServer

访问链接

结果

image

注册服务提供者

创建springboot项目

  • pom.xml导入有关eureka包

            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-starter-eureka</artifactId>
                <version>${spring-cloud-starter-eureka.version}</version>
            </dependency>
        <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.cloud</groupId>
                <artifactId>spring-cloud-dependencies</artifactId>
                <version>Greenwich.SR1</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
  • 启动类加@EnableDiscoveryClient注解
  • application.properties配置相关信息

    //注册中心服务名
     spring.application.name=hello-server
    //注册中心地址
    eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka/

启动服务提供者项目再回到注册中心查看就有服务了

image

相关文章
|
4月前
|
监控 负载均衡 Java
深入理解Spring Cloud中的服务网关
深入理解Spring Cloud中的服务网关
|
4月前
|
Java 开发工具 git
实现基于Spring Cloud的配置中心
实现基于Spring Cloud的配置中心
|
4月前
|
设计模式 监控 Java
解析Spring Cloud中的断路器模式原理
解析Spring Cloud中的断路器模式原理
|
4月前
|
资源调度 Java 调度
Spring Cloud Alibaba 集成分布式定时任务调度功能
Spring Cloud Alibaba 发布了 Scheduling 任务调度模块 [#3732]提供了一套开源、轻量级、高可用的定时任务解决方案,帮助您快速开发微服务体系下的分布式定时任务。
14889 30
|
4月前
|
负载均衡 Java Spring
Spring cloud gateway 如何在路由时进行负载均衡
Spring cloud gateway 如何在路由时进行负载均衡
473 15
|
4月前
|
Java Spring
spring cloud gateway在使用 zookeeper 注册中心时,配置https 进行服务转发
spring cloud gateway在使用 zookeeper 注册中心时,配置https 进行服务转发
109 3
|
3月前
|
缓存 Java Maven
SpringCloud基于Eureka的服务治理架构搭建与测试:从服务提供者到消费者的完整流程
Spring Cloud微服务框架中的Eureka是一个用于服务发现和注册的基础组件,它基于RESTful风格,为微服务架构提供了关键的服务注册与发现功能。以下是对Eureka的详细解析和搭建举例。
|
4月前
|
消息中间件 Java 开发者
Spring Cloud微服务框架:构建高可用、分布式系统的现代架构
Spring Cloud是一个开源的微服务框架,旨在帮助开发者快速构建在分布式系统环境中运行的服务。它提供了一系列工具,用于在分布式系统中配置、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式会话、集群状态等领域的支持。
179 5
|
4月前
|
Java API 开发工具
Spring Boot与Spring Cloud Config的集成
Spring Boot与Spring Cloud Config的集成