Introduction to the differences between Spring and Spring boot

  • 2020-06-19 10:22:55
  • OfStack

Spring Boot profile

The spring framework is very powerful, but even for a very simple project, we have to configure a lot of things. So you have the Spring Boot framework, which is very simple, it helps us configure it automatically. At the heart of the Spring Boot framework is automatic configuration, which is done by Spring whenever a corresponding jar package exists. If the default configuration doesn't meet the requirements, we can also replace the automatic configuration classes and use our own configuration. In addition, Spring Boot integrates embedded Web servers, system monitoring and many other useful work, allowing us to quickly build enterprises and applications.

This paper introduces the differences between Spring and Spring boot. The details are as follows:

1. I have not had a deep understanding of SPRING. Spring boot is always used as part 1 of SPRING, but it is not.

Spring boot is a new micro framework built on Spring to simplify the Spring construction and development process.

It has the following characteristics:

1) Simple and easy to use, beginners and Daniel can easily start, the annotation will provide users with convenience;

2) Spring boot well encapsulates and integrates the third party technology, and provides a large number of third party interfaces;

3) By relying on automatic configuration, configuration files such as XML are not required

4) It also provides features such as security, which should be ignored for now.


Related articles: