吾生也有涯,而知也无涯。这篇文章主要讲述Spring Cloud 入门 -- 搭建Eureka注册中心 实现服务者与消费者的服务调用相关的知识,希望能为你提供帮助。
一、什么是Spring Cloud?摘自??Spring Cloud官网??
Spring Cloud provides tools for developers to quickly build some of the common patterns in distributed systems (e.g. configuration management, service discovery, circuit breakers, intelligent routing, micro-proxy, control bus, one-time tokens, global locks, leadership election, distributed sessions, cluster state). Coordination of distributed systems leads to boiler plate patterns, and using Spring Cloud developers can quickly stand up services and applications that implement those patterns. They will work well in any distributed environment, including the developer’s own laptop, bare metal data centres, and managed platforms such as Cloud Foundry.以上翻译如下:
Spring Cloud 为开发者提供了工具来快速构建分布式系统中的一些常见模式(例如配置管理、服务发现、断路器、智能路由、微代理、控制总线、一次性令牌、全局锁、领导选举、分布式会话,集群状态)。分布式系统的协调导致了样板模式,使用 Spring Cloud 开发人员可以快速建立实现这些模式的服务和应用程序。它们在任何分布式环境中都能很好地工作,包括开发人员自己的笔记本电脑、裸机数据中心以及 Cloud Foundry 等托管平台。
文章图片
大致意思就是 Spring Cloud 是一个分布式框架,基于Spring Boot微服务,将一个一个独立的模块聚合,达到了“?
? 高内聚 · 低耦合?
? ”【Spring Cloud 入门 -- 搭建Eureka注册中心 实现服务者与消费者的服务调用】
二、Spring Cloud 与 Spring Boot 的关系
- Spring Boot专注于开发方便的开发单个个体微服务;
- Spring Cloud是关注全局的微服务协调整理治理框架,它将Spring Boot开发的一个个单体微服务,整合并管理起来,为各个微服务之间提供:配置管理、服务发现、断路器、路由、为代理、事件总栈、全局锁、决策竞选、分布式会话等等集成服务;
- Spring Boot专注于快速、方便的开发单个个体微服务,Spring Cloud关注全局的服务治理框架
- Spring Boot 可以离开Spring Cloud 独立运行,而Spring Cloud 不可以离开Spring Boot,是基于Spring Boot的
?社区更新力度Dubbo活跃度较低
Spring Cloud社区活跃度比较高
定位不同:Dubbo 的定位是一款高性能RPC框架,而Spring Cloud的目标是分布式微服务架构的一站式解决方案
框架 | Spring Cloud | Dubbo |
服务注册中心 | Spring Cloud Netfix Eureka | Zookkeper |
服务调用方式 | REST API | RPC |
服务监控 | Spring Boot Admin | Dubbo-monitor |
断路器 | Spring Cloud Netfix Hystrix | 未完善,引用外部断路器 |
服务网关 | Spring Cloud Netfix Zuul | 无 |
分布式配置 | Spring Cloud Config | 无 |
服务跟踪 | Spring Cloud Sleuth | 无 |
消息总栈 | Spring Cloud Bus | 无 |
数据流 | Spring Cloud Strem | 无 |
批量任务 | Spring Cloud Task | 无 |
严格来说,这两种方式各有优劣。虽然从一定程度上来说,后者牺牲了服务调用的性能,但也避免了上面提到的原生RPC带来的问题。而且REST相比RPC更为灵活,服务提供方和调用方的依赖只依靠一纸契约,不存在代码级别的强依赖,这个优点在当下强调快速演化的微服务环境下,显得更加合适。
四、Spring Cloud 能干什么?
- Distributed/versioned configuration 分布式/版本控制配置
- Service registration and discovery 服务注册与发现
- Routing 路由
- Service-to-service calls 服务到服务的调用
- Load balancing 负载均衡配置
- Circuit Breakers 断路器
- Distributed messaging 分布式消息管理
Eureka是Netflix的子模块,也是核心模块之一。Eureka是基于REST的服务,用于定位服务,以实现云端中间件层服务发现和故障转移,服务注册与发现对于微服务来说是非常重要的,有了服务注册与发现,只需要使用服务的标识符,就可以访问到服务,而不需要修改服务调用的配置文件了,功能类似于Dubbo的注册中心,比如Zookeeper。
六、Eureka 的特性及优点
- Eureka是一个基于REST的服务,用于定位服务,以实现云端中间层服务发现和故障转移。
- Eureka 主管服务注册与发现,在微服务中,以后了这两者,只需要使用服务的标识符,就是那个在每个服务的yml文件中取得服务名称, 就可以访问到服务,不需要修改服务调用的配置文件。
- Eureka遵循AP原则高可用,分区容错性,因为使用了自我保护机制所以保证了高可用。
Eureka三大角色:
- Eureka Server:提供服务注册和发现
- Service Provider:服务提供方,将自身服务注册到Eureka,从而使服务消费方能够找到
- Service Consumer:服务消费方,从Eureka获取注册服务列表,从而能够消费服务。
使用Spring Cloud 实现分布式应用
- 服务提供者,将服务注册到Eureka注册中心
- 服务消费者,从Eureka取出调用的服务并获取返回结果
文章图片
?? 效果图
文章图片
??项目结构
文章图片
模块说明
- spring_cloud模块:父级模块
- springcloud-api:实体类模块
- springcloud-eureka:注册中心模块
- springcloud-provider:服务提供者模块
- springcloud-consumer:服务消费者模块
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">
< modelVersion> 4.0.0< /modelVersion>
< groupId> org.example< /groupId>
< artifactId> spring_cloud< /artifactId>
< version> 1.0-SNAPSHOT< /version>
< modules>
< module> springcloud-api< /module>
< module> springcloud-provider< /module>
< module> springcloud-eureka< /module>
< module> springcloud-consumer< /module>
< /modules>
< !-- 打包方式为 pom -->
< packaging> pom< /packaging>
< properties>
< project.build.sourceEncoding> UTF-8< /project.build.sourceEncoding>
< maven.compiler.source> 1.8< /maven.compiler.source>
< maven.compiler.target> 1.8< /maven.compiler.target>
< junit.version> 4.12< /junit.version>
< log4j.version> 1.2.17< /log4j.version>
< lombok.version> 1.16.18< /lombok.version>
< /properties>
< dependencyManagement>
< dependencies>
< dependency>
< groupId> org.springframework.cloud< /groupId>
< artifactId> spring-cloud-alibaba-dependencies< /artifactId>
< version> 0.2.0.RELEASE< /version>
< type> pom< /type>
< scope> import< /scope>
< /dependency>
< !--springCloud的依赖-->
< dependency>
< groupId> org.springframework.cloud< /groupId>
< artifactId> spring-cloud-dependencies< /artifactId>
< version> Greenwich.SR1< /version>
< type> pom< /type>
< scope> import< /scope>
< /dependency>
< !--SpringBoot-->
< dependency>
< groupId> org.springframework.boot< /groupId>
< artifactId> spring-boot-dependencies< /artifactId>
< version> 2.1.4.RELEASE< /version>
< type> pom< /type推荐阅读
- ls命令设置颜色
- Window下编译qtpdfium
- linux之字符设备驱动
- 超详细解释从Java NIO到Netty的每一步
- Ubuntu20.04基于QT5.15.2搭建android环境
- 6个解决方案(如何在Windows 11上修复鼠标延迟的问题())
- 升级到Windows 11后桌面图标消失如何修复(解决办法)
- android WIFI 设置代理代码 4.4.3——5.0
- 在状态栏增加图标(Android 6.0)