什么是Spring Boot?
Spring Boot是Spring开源组织下的子项目,是Spring组件一站式解决方案,主要是简化了使用Spring的难度,简省了繁重的配置,提供了各类启动器,开发者能快速上手。java
官方网站:http://projects.spring.io/spring-boot/
GitHub源码:https://github.com/spring-projects/spring-bootgit
Spring Boot的优势
Featuresgithub
- Create stand-alone Spring applications
- Embed Tomcat, Jetty or Undertow directly (no need to deploy WAR files)
- Provide opinionated 'starter' POMs to simplify your Maven configuration
- Automatically configure Spring whenever possible
- Provide production-ready features such as metrics, health checks and externalized configuration
- Absolutely no code generation and no requirement for XML configuration
-
独立运行web
Spring Boot并且内嵌了各类servlet容器,Tomcat、Jetty等,如今再也不须要打成war包部署到容器中,Spring Boot只要打成一个可执行的jar包就能独立运行,全部的依赖包都在一个jar包内。spring
-
简化配置apache
spring-boot-starter-web启动器自动依赖其余组件,简少了maven的配置。api
+- org.springframework.boot:spring-boot-starter-web:jar:1.5.6.RELEASE:compile +- org.springframework.boot:spring-boot-starter-tomcat:jar:1.5.6.RELEASE:compile | +- org.apache.tomcat.embed:tomcat-embed-core:jar:8.5.16:compile | +- org.apache.tomcat.embed:tomcat-embed-el:jar:8.5.16:compile | \- org.apache.tomcat.embed:tomcat-embed-websocket:jar:8.5.16:compile +- org.hibernate:hibernate-validator:jar:5.3.5.Final:compile | +- javax.validation:validation-api:jar:1.1.0.Final:compile | +- org.jboss.logging:jboss-logging:jar:3.3.1.Final:compile | \- com.fasterxml:classmate:jar:1.3.3:compile \- org.springframework:spring-webmvc:jar:4.3.10.RELEASE:compile
-
自动配置tomcat
Spring Boot能根据当前类路径下的类、jar包来自动配置bean,如添加一个spring-boot-starter-web启动器就能拥有web的功能,无需其余配置。websocket
-
无代码生成和XML配置markdown
Spring Boot配置过程当中无代码生成,也无需XML配置文件就能完成全部配置工做,这一切都是借助于条件注解完成的,这也是Spring4.x的核心功能之一。
-
应用监控
Spring Boot提供一系列端点能够监控服务及应用,作健康检测。
Spring Boot的缺点
Spring Boot虽然上手很容易,但若是你不了解其核心技术及流程,因此一旦遇到问题就很棘手,并且如今的解决方案也不是不少,须要一个完善的过程。