[Spring Boot study notes 01] Introduction to Spring Boot

[Spring Boot study notes 01] Introduction to Spring Boot

1. What is Spring Boot

Spring Boot is a framework used to simplify Spring application development

Application development based on Spring+SpringMVC+Mybatis still has problems such as multiple configurations, low efficiency, complex deployment, and difficulty in third-party technology integration .

SpringBoot provides a J2EE one-stop solution , allowing development to move from the Spring Family Bucket era to the Spring Boot era

2. Advantages of Spring Boot

1. Ability to quickly run Spring projects and integrate with mainstream frameworks

2. Embedded Servlet container, no need to package into war after application development

3. Automatic dependency, version control

4. Automatic assembly to simplify development

5. No need to configure xml files, no code generation, out of the box use, development based on annotations

6. Natural integration with cloud computing technology

3. Learning basics

1. Spring Boot is an extension of Spring framework, so Spring foundation is required

2. Learn Maven (an automated build tool for Java)

3. Learn the use of IDEA or Eclipse development tools

Guess you like

Origin blog.csdn.net/hkdhkdhkd/article/details/111085824
Recommended