首页 > 技术文章 > springboot

yintingting 2017-02-09 22:30 原文

SpringBoot用于简化Spring应用配置,可以快速构建Spring应用。

springboot: 0xml配置,自动配置,内嵌tomcat

spring已经可以0xml了,只不过没办法去掉web.xml。但springboot通过servlet3.0技术把web.xml去掉了。

SpringBoot的目录结构

 

基本启动器

spring-boot-starter-parent - 所有Spring Boot组件的基础引用

spring-boot-starter-web -提供web的支持

spring-boot-starter-thymeleaf -提供thymeleaf模板引擎的支持

spring-boot-maven-plugin -提供打包的支持

 

 

推荐阅读