search
HomeJavaJavaInterview questionsInterview feedback Spring Cloud's 25-shot series


Preface

Some time ago, due to special reasons, our interviews were interrupted in a row What's more, it happened that last week an old man went to an interview and was asked about Spring Cloud, and based on his feedback, today we continue the Spring Cloud interview series.

Welcome everyone to follow me:

##Summary of Spring Cloud core knowledge

The following is a Spring Cloud core component relationship diagram:

Interview feedback Spring Cloud's 25-shot series


##From this picture, we can actually get a lot of information, I hope you can savor it carefully.

The following is a summary of the core components of

Spring Cloud Netflix

and Spring Cloud Alibaba: <figure data-tool="mdnice编辑器" style="margin-top: 10px;margin-bottom: 10px;display: flex;flex-direction: column;justify-content: center;align-items: center;"><p style="text-align: center;"><img src="/static/imghwm/default1.png" data-src="https://img.php.cn/upload/article/001/273/727/84b463de133d0a90c542eef5f76e291b-1.png?x-oss-process=image/resize,p_40" class="lazy" alt="Interview feedback Spring Cloud's 25-shot series" ></p></figure><p data-tool="mdnice编辑器" style="max-width:90%"># Without further ado, let’s start the Spring Cloud series directly. </p> <h2 data-tool="mdnice编辑器" style="margin-top: 30px;margin-bottom: 15px;font-weight: bold;border-bottom: 2px solid rgb(239, 112, 96);font-size: 1.3em;"> <span style="display: none;"></span><span style="display: inline-block;background: rgb(239, 112, 96);color: rgb(255, 255, 255);padding: 3px 10px 1px;border-top-right-radius: 3px;border-top-left-radius: 3px;margin-right: 3px;"> serial gun walking</span><span style="display: inline-block;vertical-align: bottom;border-bottom: 36px solid #efebe9;border-right: 20px solid transparent;"> </span> </h2> <h3 data-tool="mdnice编辑器" style="margin-top: 30px;margin-bottom: 15px;font-weight: bold;font-size: 20px;"> <span style="display: none;">##1. What is Spring Cloud? </span><span style="display: none;"></span> </h3>Spring cloud streaming application starter is a Spring integration application based on Spring Boot that provides integration with external systems. Spring Cloud Task, a short-lived microservice framework for quickly building applications that perform limited data processing. <p data-tool="mdnice编辑器" style="padding-top: 8px;padding-bottom: 8px;line-height: 26px;margin-top: 1px;margin-bottom: 1px;"></p> <h3 data-tool="mdnice编辑器" style="margin-top: 30px;margin-bottom: 15px;font-weight: bold;font-size: 20px;"> <span style="display: none;">2. What are microservices? </span><span style="display: none;"></span> </h3>Microservice architecture is an architectural pattern or an architectural style that advocates dividing a single application into a set of small services, with each service running on its own independent In their own process, services coordinate and cooperate with each other to provide users with ultimate value. Services use lightweight communication mechanisms to communicate with each other (usually RESTful API based on HTTP). Each service is built around a specific business and can be independently built in a production environment, production-like environment, etc. In addition, a unified and centralized service management mechanism should be avoided. For a specific service, appropriate languages ​​and tools should be selected according to the business context to build it. There can be a very lightweight centralized management. To coordinate these services, different languages ​​can be used to write the services, and different data stores can be used. <p data-tool="mdnice编辑器" style="padding-top: 8px;padding-bottom: 8px;line-height: 26px;margin-top: 1px;margin-bottom: 1px;"></p>In layman’s terms: <p data-tool="mdnice编辑器" style="padding-top: 8px;padding-bottom: 8px;line-height: 26px;margin-top: 1px;margin-bottom: 1px;"></p>A microservice is an independent service application with a single responsibility. In the intellij idea tool, there are independent modules developed using maven. Specifically, it is a small module developed using springboot to handle a single professional business logic. Each module only does one thing. <p data-tool="mdnice编辑器" style="padding-top: 8px;padding-bottom: 8px;line-height: 26px;margin-top: 1px;margin-bottom: 1px;"></p> Microservices emphasize the size of the service and focus on a certain point. A service application corresponding to a specific problem/implementation can be regarded as a module in the idea. <p data-tool="mdnice编辑器" style="padding-top: 8px;padding-bottom: 8px;line-height: 26px;margin-top: 1px;margin-bottom: 1px;"></p> <h3 data-tool="mdnice编辑器" style="margin-top: 30px;margin-bottom: 15px;font-weight: bold;font-size: 20px;"> <span style="display: none;">3. What are the advantages of Spring Cloud?</span><span style="display: none;"></span> </h3>When using Spring Boot to develop distributed microservices, we face the following problems<p data-tool="mdnice编辑器" style="padding-top: 8px;padding-bottom: 8px;line-height: 26px;margin-top: 1px;margin-bottom: 1px;"></p> <ul class="list-paddingleft-2" data-tool="mdnice编辑器" style="margin-top: 8px;margin-bottom: 8px;padding-left: 25px;"> <li><section style="margin-top: 5px;margin-bottom: 5px;line-height: 26px;color: rgb(1, 1, 1);">Complexity associated with distributed systems - This overhead includes network issues, latency overhead, bandwidth issues, security issues. </section></li> <li><section style="margin-top: 5px;margin-bottom: 5px;line-height: 26px;color: rgb(1, 1, 1);"> Service Discovery - Service discovery tools manage how processes and services in a cluster find and talk to each other. It involves a service catalog, registering services in that catalog, and then being able to find and connect to services in that catalog. </section></li> <li><section style="margin-top: 5px;margin-bottom: 5px;line-height: 26px;color: rgb(1, 1, 1);">Redundancy - Redundancy issues in distributed systems. </section></li> <li><section style="margin-top: 5px;margin-bottom: 5px;line-height: 26px;color: rgb(1, 1, 1);"> Load Balancing -- Load balancing improves the distribution of workloads across multiple computing resources, such as computers, computer clusters, network links, central processing units, or disk drives. </section></li> <li><section style="margin-top: 5px;margin-bottom: 5px;line-height: 26px;color: rgb(1, 1, 1);">Performance-Issue Performance issues due to various operational overheads. </section></li> <li><section style="margin-top: 5px;margin-bottom: 5px;line-height: 26px;color: rgb(1, 1, 1);">Deployment Complexity - Requirements for Devops skills. </section></li> </ul> <h3 data-tool="mdnice编辑器" style="margin-top: 30px;margin-bottom: 15px;font-weight: bold;font-size: 20px;"> <span style="display: none;"></span>4. How do microservices communicate independently? <span style="display: none;"></span> </h3> <p data-tool="mdnice编辑器" style="padding-top: 8px;padding-bottom: 8px;line-height: 26px;margin-top: 1px;margin-bottom: 1px;">Synchronous communication: dobbo uses RPC remote procedure call , springcloud calls via REST interface json, etc. </p> <p data-tool="mdnice编辑器" style="padding-top: 8px;padding-bottom: 8px;line-height: 26px;margin-top: 1px;margin-bottom: 1px;">Asynchronous: message queue, such as: <code style="font-size: 14px;padding: 2px 4px;border-radius: 4px;margin-right: 2px;margin-left: 2px;background-color: rgba(27, 31, 35, 0.05);font-family: " operator mono consolas monaco menlo monospace break-all rgb>RabbitMq, ActiveM, Kafka and other message queues.

5. What is a service circuit breaker? What is service downgrade?

The circuit breaker mechanism is a microservice link protection mechanism to deal with the avalanche effect. When a certain microservice is unavailable or the response time is too long, the service will be degraded, thereby interrupting the call of the microservice on the node and quickly returning "error" response information. When it is detected that the node's microservice call response is normal, the call link is restored. In the Spring Cloud framework, the circuit breaker mechanism is implemented through Hystrix. Hystrix will monitor the status of calls between microservices. When failed calls reach a certain threshold, the default is 20 calls within 5 seconds. If it fails, the circuit breaker mechanism will be activated.

Service degradation is generally considered from the overall load. That is, when a service is disconnected, the server will no longer be called. At this time, the client can prepare a local fallback callback and return a default value. In this way, although the level is reduced, it is still usable, which is better than dying directly.

HystrixRelated Notes@EnableHystrix: Turn on circuit breaker@HystrixCommand(fallbackMethod="XXX"), declare a failure rollback processing functionXXX , when the annotated method execution times out (default is 1000 milliseconds), the fallback function will be executed and an error message will be returned.

6. Please tell me the difference between Eureka and zookeeper?

Zookeeper guarantees CP and Eureka guarantees AP.

A: High availability

C: Consistency

P: Partition fault tolerance

1. When querying the registration center When listing services, we can tolerate the registration center returning information from a few minutes ago, but we cannot tolerate being directly down and unavailable. In other words, the service registration function has relatively high requirements for high availability, but there will be a situation in ZooKeeper. When the master node loses contact with other nodes due to network failure, the remaining nodes will re-elect the leader. The problem is that the leader selection time is too long, 30 ~ 120s, and the zk cluster is not available during the selection period, which will cause the registration service to be paralyzed during the selection period. In a cloud deployment environment, it is a high probability that the zk cluster will lose the master node due to network problems. Although the service can be restored, the long-term unavailability of registration caused by the long selection time is intolerable.

2. Eureka ensures availability. Each Eureka node is equal. The failure of several nodes will not affect the work of normal nodes. The remaining nodes can still provide registration and query services. If a connection failure occurs when the Eureka client registers or discovers a certain Eureka, it will automatically switch to other nodes. As long as one Eureka is still available, the registration service can be guaranteed to be available, but the information found may not be the latest. In addition, Eureka also has a self-protection mechanism. If more than 85% of the nodes do not have normal heartbeats within 15 minutes, then Eureka will think that a network failure has occurred between the client and the registration center. At this time, the following situations will occur:

①. Eureka no longer removes services from the registration list that should expire because they have not received heartbeats for a long time.

②. Eureka can still accept registration and query requests for new services, but it will not be synchronized to other nodes (that is, ensuring that the current node is still available)

③. When the network is stable, the new registration information of the current instance will be synchronized to other nodes.

Therefore, Eureka can well cope with the situation where some nodes lose contact due to network failure, and will not paralyze the entire microservice like Zookeeper

##7, What is the difference between SpringBoot and SpringCloud?

SpringBoot focuses on developing individual individual microservices quickly and easily.

SpringCloud is a microservice coordination and governance framework that focuses on the overall situation. It integrates and manages individual microservices developed by SpringBoot, and

provides configuration management for each microservice. , service discovery, circuit breaker, routing, micro agent, event bus, global lock, decision election, distributed session and other integrated services

SpringBoot can be used independently without SpringCloud for development projects, but SpringCloud cannot be separated from SpringBoot. It is a dependency relationship.

SpringBoot focuses on the rapid and convenient development of individual microservices, while SpringCloud focuses on the global service governance framework.

8. What is the meaning of load balancing?

In computing, load balancing improves the distribution of workload across multiple computing resources such as computers, computer clusters, network links, central processing units, or disk drives. Load balancing aims to optimize resource usage, maximize throughput, minimize response time and avoid overloading any single resource. Using multiple components for load balancing rather than a single component may improve reliability and availability through redundancy. Load balancing typically involves specialized software or hardware, such as multilayer switches or Domain Name System server processes.

9. What is Hystrix? How does it achieve fault tolerance?

Hystrix is ​​a latency and fault tolerance library designed to isolate access points to remote systems, services and third-party libraries, stop cascading failures and stop cascading failures when failures are unavoidable Achieving resiliency in complex distributed systems.

Usually for systems developed using microservice architecture, many microservices are involved. These microservices collaborate with each other.

Think about the following microservices

Interview feedback Spring Cloud's 25-shot series

Assume that if microservice 9 in the above picture fails, then use traditional methods We will propagate an exception. But this still causes the entire system to crash.

As the number of microservices increases, this problem becomes more complex. The number of microservices can be as high as 1000. This is where hystrix comes in. We will use the Fallback method feature of Hystrix in this case. We have two services employee-consumer which uses services exposed by employee-consumer.

The simplified diagram is as follows

Interview feedback Spring Cloud's 25-shot series

Now assume that for some reason, the service exposed by employee-producer will throw Exception occurred. We have defined a fallback method using Hystrix in this case. This fallback method should have the same return type as the public service. If an exception occurs in the exposed service, the fallback method will return some value.

10. What is Hystrix circuit breaker? Do we need it?

For some reasons, the employee-consumer public service throws an exception. Using Hystrix in this case we define a fallback method. If an exception occurs in the exposed service, the fallback method returns some default value.

Interview feedback Spring Cloud's 25-shot series


If the exception in firstPage method() continues to occur, the Hystrix circuit will break and the employee will use Or will skip the firtsPage method altogether and call the fallback method directly. The purpose of the circuit breaker is to allow time for the first page method or other methods that the first page method may call and cause exception recovery. What may be happening is that under lighter load, the problem that caused the exception has a better chance of recovery.

Interview feedback Spring Cloud's 25-shot series


11. Talk about the implementation principle of RPC

First of all, there is a module that handles network connection communication, which is responsible for connection establishment, management and message transmission. Secondly, a coding and decoding module is needed, because network communications are all transmitted bytecodes, and the objects we use need to be serialized and deserialized. The rest is the client and server parts. The server exposes the service interface to be opened. The client calls a proxy implementation of the service interface. This proxy implementation is responsible for collecting data, encoding and transmitting it to the server and then waiting for the results to be returned.

12. What is the self-protection mechanism of eureka?

When the Eureka Server node loses the connections of too many instances in a short period of time ( For example, network failure or frequent startup and shutdown of the client) the node will enter the self-protection mode to protect the registration information and will no longer delete the registration data. When the failure recovers, it will automatically exit the self-protection mode.

13. What is Ribbon?

ribbon is a load balancing client that can well control some behaviors of http and tcp. feign integrates ribbon by default.

#14, What is Netflix Feign? What are its advantages?

Feign is a java client binder inspired by Retrofit, JAXRS-2.0 and WebSocket.

Feign's first goal is to unify the complexity of constraint denominators to http apis, regardless of their stability.

Features:

  • Feign uses interface-based annotations
  • Feign integrates ribbon and has load balancing capabilities
  • Integrated Hystrix, with circuit breaker capability

Usage method

  • Add pom dependency.
  • Start class addition@EnableFeignClients
  • Define an interface@FeignClient(name="xxx") Specify which service to call

#15. What is the difference between Ribbon and Feign?

1. Ribbon calls other services, but in different ways. 2. The startup class annotations are different. Ribbon is @RibbonClient and feign is @EnableFeignClients. 3. The specified location of the service is different. Ribbon is declared on the @RibbonClient annotation, while Feign is declared using @FeignClient in the interface that defines the abstract method. 4. The calling methods are different. Ribbon needs to construct the http request by itself and simulate the http request.

16. What are the core components of Spring Cloud?

  • Eureka: Service registered with Discovery.
  • Feign: Based on the dynamic proxy mechanism, based on the annotation and selected machine, the request url address is spliced ​​and the request is initiated.
  • Ribbon: Implement load balancing and select one from multiple machines for a service.
  • Hystrix: Provides a thread pool. Different services use different thread pools, which realizes the isolation of different service calls and avoids the problem of service avalanche.
  • Zuul: Gateway management, the Zuul gateway forwards requests to the corresponding services.

17. Talk about the relationship between Spring Boot and Spring Cloud

Spring Boot is launched by Spring to solve the traditional A Maven-based solution with redundant framework configuration files and complex assembly components, designed to quickly build a single microservice Spring Cloud focuses on solving the coordination and configuration between various microservices, communication between services, circuit breaker, load balancing, etc. The technical dimensions are not the same, and Spring Cloud depends on Spring Boot, but Spring Boot does not depend on Spring Cloud, and can even perform excellent integrated development with Dubbo

Summary

  • SpringBoot focuses on the quick and convenient development of individual microservices
  • SpringCloud is a microservice coordination and governance framework that focuses on the overall situation, integrating and managing each microservice, and providing services for each microservice. Provides integration services such as configuration management, service discovery, circuit breakers, routing, event buses, etc.
  • Spring Boot does not depend on Spring Cloud. Spring Cloud depends on Spring Boot and is a dependency. Relationship
  • Spring Boot focuses on quickly and conveniently developing individual microservices, while Spring Cloud focuses on the global service governance framework

##18. Talk about how microservices communicate independently?

Remote Procedure Invocation

is what we often call the registration and discovery of services. Access other services directly through remote procedure calls.

Advantages: Simple and common, because there is no middleware proxy, the system is simpler

Disadvantages: Only supports request/response mode, not Supporting others, such as notifications, request/asynchronous response, publish/subscribe, publish/asynchronous response, reduces usability because both the client and the server must be available during the request process.

Message

Use asynchronous messages for inter-service communication. Services communicate by exchanging messages through message pipes.

Advantages: Decouple the client and server, looser coupling, and improve availability, because the message middleware caches the message until the consumer can consume it, and supports many communication mechanisms such as notifications , request/asynchronous response, publish/subscribe, publish/asynchronous response.

Disadvantages: Message middleware has additional complexity.

19. How does Spring Cloud implement service registration?

When the service is released, specify the corresponding service name and register the service to the registration center (Eureka, Zookeeper).

Add @EnableEurekaServer to the registration center, use @EnableDiscoveryClient for the service, and then use ribbon or feign to directly call and discover the service.

This question is more practical. It depends on whether you have memorized the interview questions. People who have not practiced it will not know.

20. What is a service circuit breaker?

In a complex distributed system, the mutual calls between microservices may cause service blocking for various reasons. In high concurrency scenarios, the service Blocking means blocking of threads, causing the current thread to be unavailable. All threads of the server are blocked, causing the server to crash. Since the calling relationship between services is synchronous, it will cause a service avalanche for the entire microservice system

In order To solve the problem that the call response time of a certain microservice is too long or is unavailable, which takes up more and more system resources and causes an avalanche effect, it is necessary to carry out service circuit breaker and service degradation processing.

The so-called service circuit breaker refers to a certain service failure or abnormality, which is similar to the "fuse" in the display world. When an abnormal condition is triggered, the entire service is directly blown, instead of waiting until the service times out.

Service fusing is equivalent to the fuse of our electric switch. Once a service avalanche occurs, the entire service will be fusing. By maintaining a thread pool of its own, when the thread reaches the threshold, service degradation will be initiated. If other requests If you continue to access, you will directly return to the default value of fallback

21. Do you understand Eureka’s self-protection mechanism?

When the Eureka Server node loses connections to too many instances in a short period of time (such as network failure or frequent startup and shutdown of clients) the node will enter self-protection mode to protect registration information. Registration data will no longer be deleted, and the self-protection mode will automatically exit when the fault is restored.

22. Are you familiar with Spring Cloud Bus?

spring cloud bus connects distributed nodes with lightweight message brokers. Can be used to broadcast configuration file changes or direct service communication, and can also be used for monitoring. If the configuration file is modified and a request is sent, all clients will re-read the configuration file.

23. What is the function of Spring Cloud circuit breaker?

When a service calls another service and there is a problem due to network reasons or its own reasons, The caller will wait for the callee's response. When more service requests to these resources lead to more requests waiting, a chain effect (avalanche effect) occurs. If it cannot be called a certain number of times within a period of time and there is no sign of recovery after multiple monitoring, then the circuit breaker is fully opened and the service will not be requested next time.

Half-open: There are signs of recovery in a short period of time. The circuit breaker will send some requests to the service. When called normally, the circuit breaker is closed. Closed: When the service is always in a normal state and can be called normally.

24. Do you know Spring Cloud Config?

In a distributed system, due to the huge number of services, in order to facilitate the unification of service configuration files Management and real-time updates require distributed configuration center components. In Spring Cloud, there is a 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 a remote Git repository.

In the Spring Cloud Config component, there are two roles, one is config server and the other is config client.

Usage:

  • Add pom dependency
  • Add related configuration to configuration file
  • Add annotation @EnableConfigServer to startup class

25. Talk about your understanding of Spring Cloud Gateway

Spring Cloud Gateway is the second generation officially launched by Spring Cloud Gateway framework, replacing Zuul gateway. As a traffic controller, gateways play a very important role in microservice systems. Common functions of gateways include routing and forwarding, permission verification, and current limiting control.

A RouteLocatorBuilder bean is used to create routes. In addition to creating routes, RouteLocatorBuilder allows you to add various predicates and filters. The meaning of predicates assertions, as the name suggests, is to be processed by specific routes according to specific request rules. , filters are various filters used to make various judgments and modifications to requests.

Reference; http://1pgqu.cn/M0NZo

##Summary

Spring Cloud It is quite popular at the moment and is almost one of the essential skills for Java developers. It is normal to be asked this question during the interview. Many people may have used it for a long time but failed the interview without understanding the principles. Memorizing test questions is still very useful on a large level. But from a long-term perspective, I hope everyone will learn and practice at a deeper level. Only when you really master it can you call it NB.

The above is the detailed content of Interview feedback Spring Cloud's 25-shot series. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:Java后端技术全栈. If there is any infringement, please contact admin@php.cn delete
面试反馈 Spring Cloud 的25连环炮面试反馈 Spring Cloud 的25连环炮Aug 24, 2023 pm 03:57 PM

Spring Cloud目前相当的火热,也差不多是java开发者必备技能之一了。面试的时候被问,那也是正常不过了,很多人可能用来很久,但是没有去了解过原理,面试照样挂掉。

springcloud五大核心组件是哪些springcloud五大核心组件是哪些Jun 12, 2023 pm 03:51 PM

springcloud五大核心组件是:1、Eureka,实现服务治理;2、Ribbon,提供客户侧的软件负载均衡算法;3、Hystrix断路器,防止一个应用程序多次试图执行一个操作;4、Zuul,具有api网关,路由,负载均衡等多种作用;5、Config,进行配置管理。

比较与选择指南:SpringCloud和SpringBoot的功能对比比较与选择指南:SpringCloud和SpringBoot的功能对比Dec 29, 2023 pm 06:36 PM

SpringCloud和SpringBoot是目前Java领域中最热门的开源框架,它们分别提供了一套完善的微服务架构和快速构建应用程序的解决方案。本文将对它们的功能进行比较,并给出选择指南,以帮助读者了解它们的优势和适用场景。SpringBoot是一个用于开发Java应用程序的框架,它提供了一个简化的开发流程,集成了大量常用的功能和组件,减少了开发者的工作量

SpringCloud和SpringBoot在微服务领域的应用方式的对比和分析SpringCloud和SpringBoot在微服务领域的应用方式的对比和分析Dec 29, 2023 pm 03:45 PM

近年来,随着云计算和分布式架构的兴起,微服务架构的应用越来越广泛。而SpringCloud和SpringBoot作为Java开发中的两个重要框架,对于微服务的实现起到了重要的作用。然而,很多人对于它们在微服务领域的不同应用方式还存在一定的疑惑。本文将从不同的角度探索SpringCloud和SpringBoot在微服务中的应用方式。首先,我们来了解一下Spri

Idea springboot springCloud热加载热调试的常用方法有哪些Idea springboot springCloud热加载热调试的常用方法有哪些May 18, 2023 pm 05:43 PM

场景描述在项目开发的过程中,需要修改调试的时候偶每次都需要重启项目浪费时间,下面是我整理的两种常用的两种方式方式一修改启动配置方式(主要针对debug模式下)点击启动配置=》editconfigrations&hellip;configration下面修改Updateclassesandresourceson&lsquo;update&lsquo;action:当用户主动执行更新的时候更新快捷键:Ctrl+F9onframedeactication:在编辑窗口失去焦点的时

SpringCloud-Spring Boot Starter使用测试实例分析SpringCloud-Spring Boot Starter使用测试实例分析May 16, 2023 am 11:10 AM

SpringBootStarter是什么?SpringBootStarter是在SpringBoot组件中被提出来的一种概念、简化了很多烦琐的配置、通过引入各种SpringBootStarter包可以快速搭建出一个项目的脚手架。比如我们经常用的一些:spring-boot-starter-web:spring-boot-starter-data-redis:spring-boot-starter-data-mongodb:spring-boot-starter-data-jpa:spring-b

从架构角度看SpringCloud与SpringBoot的差异从架构角度看SpringCloud与SpringBoot的差异Dec 29, 2023 pm 04:13 PM

从架构角度看SpringCloud与SpringBoot的差异引言:在当今的互联网时代,构建分布式系统已经成为了一种必要的需求。而SpringBoot和SpringCloud正是为了满足这个需求而诞生的。尽管它们都是由Spring框架所提供的解决方案,但从架构角度来看,它们存在着一些重要的差异。本文将从架构的角度出发,对SpringBoot和SpringCl

springcloud和springboot有什么区别springcloud和springboot有什么区别Dec 28, 2023 pm 03:34 PM

springcloud和springboot的区别:1、作用;2、使用方式;3、创作初衷;4、目的;5、集成性;6、扩展性;7、复杂性;8、社区支持;9、安全性;10、部署和运维。详细介绍:1、作用,Spring Boot主要的作用是为微服务开发提供一种快速的方式,简化配置文件,提高工作效率,而Spring Cloud则是一个综合管理框架,用于给微服务提供一个综合管理框架等等。

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 Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version