web123456

The difference between Spring Boot and Spring Cloud

1. Spring boot is a set of fast configuration scaffolding for Spring, which can quickly develop single microservices based on spring boot; Spring Cloud is a cloud application development tool based on Spring Boot;

2. Spring boot focuses on individuals that are fast and convenient to integrate, and Spring Cloud is a service governance framework that focuses on the global scope;

3. Spring boot uses the concept that default is greater than configuration. Many integration solutions have been selected for you. If you can, don’t configure it, you will not configure it. A large part of Spring Cloud is implemented based on Spring boot.

4. Spring boot can use development projects independently without Spring Cloud, but Spring Cloud cannot do without Spring boot, and is a dependency relationship.