天天看点

Spring Boot快速搭建Web项目基本框架

Spring Boot快速搭建Web项目基本框架
Spring Boot快速搭建Web项目基本框架

配置版本

依赖父项目

引入web项目核心依赖包

spring-boot-starter-web

如果使用thymeleaf模版,可直接引入spring-boot-starter-thymeleaf,这个已经包含了spring-boot-starter-web的依赖

如果还用到了thymeleaf的layout layout dialect,还需要引入另外一个依赖

添加devtools依赖

添加maven-plugin插件

添加依赖

Spring Boot快速搭建Web项目基本框架

Application.java

application.yml