search
HomeJavaJavaBaseWhat are the seven major components of Spring Cloud?
What are the seven major components of Spring Cloud?Apr 25, 2021 pm 05:43 PM
javaspring bootspring cloud

Spring Cloud seven major components: 1. Eureka component, which describes how the service is registered and where to register it; 2. Ribbon component; 3. Feign component, a declaration web service client; 4. Hystrix component; 5. Config component; 6. Zuul component; 7. Bus component.

What are the seven major components of Spring Cloud?

The operating environment of this tutorial: windows7 system, java8 version, DELL G3 computer.

Spring Cloud Family Bucket Component

Before introducing the Spring Cloud Family Bucket, I must first introduce Netflix. Netflix is ​​a great company. In Spring It plays an important role in the Cloud project. Netflix provides many components including Eureka, Hystrix, Zuul, Archaius, etc., which are crucial in the microservice architecture. Spring encapsulates a series of components based on Netflix , named: Spring Cloud Eureka, Spring Cloud Hystrix, Spring Cloud Zuul, etc. Each component is introduced below:

(1) Spring Cloud Eureka

We use microservices. The essence of microservices is the calling of various API interfaces. So how do we generate these interfaces and how do we call them after generating these interfaces? How to manage it?

The answer is Spring Cloud Eureka. We can register our own defined API interface to Spring Cloud Eureka. Eureka is responsible for service registration and discovery. If you have studied Zookeeper, you can understand it well. Eureka The role is similar to that of Zookeeper, which is the registration and discovery of services. The components that make up the Eureka system include: service registration center, service provider, and service consumer.

What are the seven major components of Spring Cloud?

The above picture describes (the picture comes from the Internet):

1. Master-slave replication of the service registration center composed of two Eureka service registration centers Cluster;
2. Then service provider registers, renews, offline services, etc. with the registration center;
3. Service consumer reports to Eureka The registration center pulls the service list and maintains it locally (this is also the mechanism of client discovery mode !);
4. Then service consumeraccording to the Eureka Service Registration Center Select a service provider from the obtained service list to consume services.

(2) Spring Cloud Ribbon

Spring Cloud Eureka describes how services are registered, where they are registered, and how service consumers obtain services from service producers. Information, but Eureka only maintains the relationship between service producers, registration centers, and service consumers. The real service consumer calls the data provided by the service producer through Spring Cloud Ribbon.

It is mentioned in (1) that the service consumer obtains the service list of the service producer from the registration center and maintains it locally. This way of client discovery mode allows the service consumer to choose the appropriate one. The node accesses the data provided by the service producer. This process of selecting the appropriate node is completed by Spring Cloud Ribbon.

Spring Cloud Ribbon client load balancer comes from this.

(3) Spring Cloud Feign

In the above (1) and (2), we have used the simplest way to realize the registration discovery and service invocation of the service. Operation, if you specifically use Ribbon to call services, you can feel that the way to use Ribbon is still a bit complicated, so Spring Cloud Feign came into being.

Spring Cloud Feign is a declarative web service client, which makes writing web service clients easier. Use Feign to create an interface and annotate it. It has pluggable annotation support including Feign annotations and JAX-RS annotations, Feign also supports pluggable encoders and decoders, Spring Cloud adds annotations for Spring MVC, Spring Web uses HttpMessageConverters by default, Spring Cloud integrates Ribbon and the load-balanced HTTP client Feign provided by Eureka .

It can be simply understood as: the emergence of Spring Cloud Feign makes the use of Eureka and Ribbon easier.

(4) Spring Cloud Hystrix

We learned about using Eureka for service registration and discovery in (1), (2), and (3). Use Ribbon implements load balancing calls of services, and we also know that using Feign can simplify our coding. However, these are not enough to achieve a highly available microservice architecture.

For example: When a service fails, and the caller of the service does not know that the service has failed, if the number of requests placed by the call continues to increase, it will eventually wait for the failed relying party to form a task accordingly. The backlog eventually led to the paralysis of its own services.

Spring Cloud Hystrix is ​​designed to solve this situation and prevent continuous access to a faulty service. The meaning of Hystrix is: circuit breaker. The circuit breaker itself is a switching device used for circuit protection in our homes to prevent current overload. When an electrical appliance in the line is short-circuited, the circuit breaker can switch the faulty electrical appliance in time to prevent Serious consequences such as overloading, heating or even fire may occur.

(5) Spring Cloud Config

When there were not many microservices, the configuration and management of various services were relatively simple, but when there are hundreds or thousands of microservice nodes When it gets up, the management of service configuration will become complicated.

In a distributed system, due to the huge number of services, in order to facilitate unified management and real-time updating of service configuration files, a distributed configuration center component is required. In Spring Cloud, there is the distributed configuration center component Spring Cloud Config, which supports the configuration service to be placed in the memory of the configuration service (that is, local), and also supports being placed in the remote Git repository. In the Cpring Cloud Config component, there are two roles, one is Config Server and the other is Config Client.

Config Server is used to store configuration attributes. The storage location can be Git warehouse, SVN warehouse, local files, etc. Config Client is used to read service attributes.

What are the seven major components of Spring Cloud?

(6) Spring Cloud Zuul

We use Eureka in Spring Cloud Netflix to implement the service registration center and service registration and Discovery; service consumption and load balancing are implemented through Ribbon or Feign between services; external configuration and version management of multiple application environments are implemented through Spring Cloud Config. In order to make the service cluster more robust, Hystrix's fusing mechanism is used to avoid the spread of faults caused by exceptions in individual services in the microservice architecture.

What are the seven major components of Spring Cloud?

Let’s first talk about some things that need to be done in this architecture and its shortcomings:

1. First of all, it destroys the stateless feature of the service. In order to ensure the security of external services, we need to implement permission control on service access. The permission control mechanism of open services will penetrate and pollute the business logic of the entire open service. The most direct problem this will bring is that it will destroy the service. The stateless characteristics of REST API in the cluster. From the perspective of specific development and testing, in addition to considering the actual business logic during work, additional sustainable control processing of interface access is also required.

2. Secondly, existing interfaces cannot be directly reused. When we need to access external services from an existing cluster access interface, we have to add verification logic to the original interface or add a proxy call to implement permission control. We cannot directly reuse the original interface. .
Faced with problems similar to the above, how should we solve them? Now let’s get to the main topic of this article: Service Gateway!

In order to solve the above problems, we need to extract things like permission control from our service units, and the most suitable place for these logics is at the front end of external access. We need a more A more powerful load balancing device is what this article will introduce in the future: service gateway.

Service gateway is an integral part of the microservice architecture. In the process of uniformly providing REST API to external systems through the service gateway, in addition to having service routing and load balancing functions, it also has permission control and other functions. Zuul in Spring Cloud Netflix plays such a role, providing front-door protection for the microservice architecture. At the same time, it migrates the heavier non-business logic content of permission control to the service routing level, so that the service cluster main body can have more capabilities. High reusability and testability.

(7) Spring Cloud Bus

In (5) Spring Cloud Config, the configuration files we know can be stored in Git and other places through Config Server, through Config Client reads it, but our configuration file cannot always remain unchanged. How to update it when our configuration file changes?

The simplest way is to re-obtain the Config Client, but Spring Cloud will never let you do this. Spring Cloud Bus provides an operation that allows us to re-acquire the service without shutting down the service. Update our configuration.

Spring Cloud Bus official meaning: message bus.

Of course, dynamically updating service configuration is only one use of the message bus, and there are many other uses.

What are the seven major components of Spring Cloud?

Summary

Spring Cloud has more components than these. Through the verbal introduction above, you should be able to roughly understand it. I understand, but the functions of each component are far more than those introduced above. Each component has many other functional points. I hope the introduction here can give you an introduction and don't be afraid of such a big concept of microservices.

For more programming related knowledge, please visit: Programming Video! !

The above is the detailed content of What are the seven major components of Spring Cloud?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Spring Cloud微服务架构部署与运维Spring Cloud微服务架构部署与运维Jun 23, 2023 am 08:19 AM

随着互联网的快速发展,企业级应用的复杂度日益增加。针对这种情况,微服务架构应运而生。它以模块化、独立部署、可扩展性高等特点,成为当今企业级应用开发的首选。作为一种优秀的微服务架构,SpringCloud在实际应用中展现出了极大的优势。本文将介绍SpringCloud微服务架构的部署与运维。一、部署SpringCloud微服务架构SpringCloud

Java语言中的Spring Cloud框架介绍Java语言中的Spring Cloud框架介绍Jun 09, 2023 pm 10:54 PM

Java语言中的SpringCloud框架介绍随着云计算和微服务的流行,SpringCloud框架成为了Java语言中构建云原生应用的首选框架之一。本文将介绍SpringCloud框架的概念和特点,以及如何使用SpringCloud构建微服务架构。SpringCloud简介SpringCloud框架是基于SpringBoot的微服务框架。它为

实现分布式锁的Spring Cloud微服务实践实现分布式锁的Spring Cloud微服务实践Jun 22, 2023 pm 11:28 PM

随着微服务架构的流行,越来越多的企业开发团队开始使用SpringCloud构建自己的微服务系统。在分布式环境下,实现分布式锁是一项重要的技术挑战。本文将介绍在SpringCloud框架下,如何实现分布式锁的微服务实践。首先,我们需要了解什么是分布式锁。分布式锁是一种用于保护共享资源的访问的技术,它可以保证在分布式环境下多个节点不会同时对同一资源进行修改或

基于Spring Cloud构建高性能的微服务架构基于Spring Cloud构建高性能的微服务架构Jun 22, 2023 pm 11:15 PM

随着互联网应用的不断发展,越来越多的企业和组织开始采用微服务架构来构建应用系统。相比于传统的单体应用架构,微服务架构可以提供更高的可扩展性、灵活性和稳定性,同时也可以更好地满足业务需求。基于SpringCloud框架,我们可以很方便地构建高性能的微服务架构。SpringCloud由Spring团队打造,是一个完整的微服务框架,提供了各种工具和组件,能够支

Spring Cloud微服务架构与运维Spring Cloud微服务架构与运维Jun 22, 2023 am 10:36 AM

随着互联网技术的发展,微服务架构已经逐渐成为了互联网企业的主流技术选型。而SpringCloud作为一个开源的微服务架构解决方案,受到了越来越多企业的关注和采用。本文将围绕SpringCloud微服务架构与运维展开阐述,主要分为以下几个方面:SpringCloud微服务架构概述SpringCloud是一个开源的、轻量级的微服务框架,它提供了一系列的分

Spring Cloud微服务架构下的监控与告警实践Spring Cloud微服务架构下的监控与告警实践Jun 22, 2023 pm 03:04 PM

随着微服务架构的广泛应用,如何有效地监控和告警成为了开发人员和运维人员面临的问题之一。本文将重点介绍在SpringCloud微服务架构下实践监控和告警的具体方法。一、监控指标的选择在进行监控之前,首先需要确定需要监控的指标。常见的指标包括:CPU利用率、内存使用率、网络带宽、磁盘空间、HTTP请求的响应时间、服务调用的次数和延迟等。这些指标可通过各种监控工

Spring Cloud微服务架构下的负载均衡算法优化Spring Cloud微服务架构下的负载均衡算法优化Jun 22, 2023 am 10:33 AM

随着微服务架构的流行,负载均衡算法的优化越来越受到关注。SpringCloud作为一个流行的微服务框架,在负载均衡方面也提供了多种算法。本文将介绍SpringCloud微服务架构下的负载均衡算法优化,探讨如何选择适合自己的负载均衡算法。一、什么是负载均衡在讨论负载均衡算法之前,先了解一下负载均衡的概念。负载均衡(LoadBalancing)是一种分摊网

改进Spring Cloud微服务的高并发处理性能改进Spring Cloud微服务的高并发处理性能Jun 22, 2023 pm 12:35 PM

随着互联网的迅猛发展,Web应用程序的性能和并发处理能力已经成为决定应用程序是否成功的关键因素之一。因此,保证系统的高可用和高并发处理能力越来越重要。SpringCloud是一种基于SpringBoot的微服务架构,它可以减少开发人员在构建高可用和高性能应用程序上的工作量。然而,在实际应用中,对于大规模和高并发的应用程序,SpringCloud的默认设

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.