Chapter 2 overview of getting started with springcloud

Table of contents

1、SpringBoot

2、SpringCloud

3. The relationship between SpringCloud and SpringBoot

4. The difference between SpringCloud and dubbo

5. Reasons for choosing springcloud

6. Technical version selection


1、SpringBoot

       SpringBoot does not repeat the manufacture of wheels, it just combines the mature and practical service frameworks developed by various companies at present, and repackages through the SpringBoot style to shield the complex configuration and implementation principles, and finally leaves a set of distributed system development toolkits that are easy to understand, easy to deploy, and easy to maintain for developers .

2、SpringCloud

       SpringCloud is a set of microservice solutions that provide developers with some tools to quickly build distributed systems, including service registration and discovery, configuration center, circuit breaker (circuit breaker), routing (service gateway), load balancing, full link monitoring, event bus, global lock, decision-making campaign, distributed session and other components, all of which can be started and deployed with one click using the SpringBoot development style. In addition to highly abstract packaging based on NetFlix open source components, there are also some selection neutral open source components . spring cloud is based on springboot. 

3. The relationship between SpringCloud and SpringBoot

       What is the relationship between Spring Cloud and Spring Boot?

  • SpringBoot focuses on the rapid and convenient development of individual microservices.
  • SpringCloud focuses on the global service governance framework 
  • SpringBoot can use development projects independently without SpringCloud, but SpringCloud cannot do without SpringBoot, which is a dependency relationship
  • 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 integrated services such as configuration management, service discovery, circuit breakers, routing, micro-agents, event buses, global locks, decision-making campaigns, and distributed sessions between microservices.

4. The difference between SpringCloud and dubbo

5. Reasons for choosing springcloud

 

6. Technical version selection

Previous Chapter: Overview of Microservices

Next chapter: Spring Cloud components and getting started cases

Guess you like

Origin blog.csdn.net/qq_41946216/article/details/127283858