One "Spring Boot combat": Spring Boot entry

Disclaimer: This article is a blogger original article, follow the CC 4.0 BY-SA copyright agreement, reproduced, please attach the original source link and this statement.
This link: https://blog.csdn.net/yuan1164345228/article/details/94475253

1, Spring Boot Spring can simplify the development of applications

2, Spring Boot characteristics

  • Automatic configuration : For a lot of Spring applications common application functionality, Spring Boot automatically provide configuration.
  • Started dependence : Tell Spring Boot function of what is required, it will be able to introduce the required libraries.
  • Command Line Interface: This is an optional feature of Spring Boot, whereby you simply write the code to complete the full application, without the traditional project build.
  • Actuator : allows you to run deep in the Spring Boot application, check it out.

3, Spring Boot entry

  • Basically, Spring Boot project is the ordinary Spring project, but Spring Boot is optimized for Spring, Spring projects in the techniques or tools can be applied to Spring Boot project
  • Difference is that the new features of the above said Spring Boot
  • Spring Boot can use Spring Boot CLI quickly open project

3.1 Installing Spring Boot CLI

See "Spring Boot combat (Fourth Edition)" section 1.2.1  installation Spring Boot CLI, recommend manual installation, ie after downloading codecs, adding environment variables.

The book for the download link has expired, you can click here to download.

3.2 Spring Initializr initialize Spring Boot project

Spring Initializr is essentially a Web application, you can generate for the Spring Boot project structure.

Spring Initializr have several uses.

  • By Web user interface.
  • By Spring Tool Suite to use.
  • By IntelliJ IDEA to use.
  • Use Spring Boot CLI use.

See the specific use of various methods of "Spring Boot combat (Fourth Edition)" Section 1.2.2 Use Spring Initializr initialize Spring Boot project

 

Guess you like

Origin blog.csdn.net/yuan1164345228/article/details/94475253