Spring Boot【入门篇】

一.SpringBoot概述:

Build Anything with Spring Boot
Spring Boot is the starting point for building all Spring-based applications. Spring Boot is designed to get you up and running as quickly as possible, with minimal upfront configuration of Spring.

上面是引自官网的一段话,大概是说: Spring Boot 是所有基于 Spring 开发的项目的起点。Spring Boot 的设计是为了让你尽可能快的跑起来 Spring 应用程序并且尽可能减少你的配置文件。

什么是SpringBoot

  • 它使用“习惯优于配置”的理念让你的项目快速运行起来。
  • 它并不是什么新的框架,而是默认配置了很多框架的使用方式,就Maven整合了所有的jar包一样,Spring Boot 整合了所有框架。

二.Spring Boot快速搭建:

详细的配置过程参考 https://www.jianshu.com/p/70963ab49f8c

你可能感兴趣的:(springboot)