springboot-服务治理

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot-服务治理相关的知识,希望对你有一定的参考价值。

参考技术A 由于微服务数量太多导致维护成本巨大,服务治理就是来解决这个问题。服务治理就是让服务子维护,微服务做为服务提供方主动向服务治理中心注册,服务的消费者通过服务治理中心查询需要的服务并调用,如下图:

    springcloud通过对Eureka的二次封装来实现服务治理。Eureka提供了服务端和客户端,服务端是服务注册中心,客户端完成服务的注册和发现,其关系如下:

    Eureka的架构:

注:1.微服务A向Eureka Server注册,并通过心跳机制告诉Server自己的状态。如果微服务A需要下线也要告诉Server;如果一段时间Server没有收到微服务A的心跳,那么认为微服务A已经宕机

        2.微服务B从Server中发现微服务A,然后向微服务A发起请求

        3.Server 有多个节点,一旦一个节点宕机,还能用其他的Server

        1.创建springboot工程 ,并选择Eureka Server

2. 在启动类上加注解 @EnableEurekaServer

3.增加application.yml配置文件

4.启动2台eureka server ,将自己注册到对方

    spring-boot:run -Dport=6868 -Deureka.server=http://127.0.0.1:6869/eureka/

    spring-boot:run -Dport=6869 -Deureka.server=http://127.0.0.1:6868/eureka/

5.通过浏览器访问,查看是否启动成功http://localhost:6868/   http://localhost:6869/

        eureka server 有2个,端口号是6868,6869 ,说明启动成功

    1.创建springboot工程 ,并选择Eureka Server

    2.增加application.yml配置文件

3.具体的controller、server、mapper开发省略,见springboot

4.启动2台微服务

    spring-boot:run -Dport=6801 -Deureka.server=http://127.0.0.1:6869/eureka/

    spring-boot:run -Dport=6802 -Deureka.server=http://127.0.0.1:6868/eureka/

5.验证微服务是否注册到eureka中

以上是关于springboot-服务治理的主要内容,如果未能解决你的问题,请参考以下文章

第三章 服务治理:Spring Cloud Eureka

spring-cloud中eureka进行服务治理

从天气项目看Spring Cloud微服务治理

Spring Cloud微服务实战-服务治理(Spring Cloud Eureka)

服务治理-Spring Cloud Eureka

微服务之SpringCloud实战:SpringCloud Eureka服务治理