1、在上文创建的整合项目中,添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
2、在application.yml中添加配置
spring:
thymeleaf:
prefix: classpath:/templates/
3、在资源目录resources中新增templates文件夹,用于存放html文件;添加static文件夹,存放静态文件,例如照片、js等
4、创建controller类,测试整合是否成功
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
public class IndexController {
@RequestMapping({"/", "/index"})
public String index() {
return "index";
}
}
5、运行测试,可以选择项目,右键Run As->Spring Boot App或者在xxxAPP.java文件中运行主函数接口
6、运行成功后,命令行会出现如下内容(此处去除了debug日志)
7、浏览器输入 http://localhost:2222/ 回车 ,即可访问到templates文件夹下的index.html文件,其中2222为设置的端口地址
SpringBoot系列文章请查看,更多内容正在更新中
(三)Maven+SpringBoot整合thymeleaf
(四)Maven+SpringBoot+thymeleaf 配置热部署devtools
(五)Maven+SpringBoot整合Bootstrap
(六)Maven+SpringBoot整合Mybatis+SQL Server
(七)SprintBoot项目打包成jar并做成后台运行的服务