Spring boot-整合thymeleaf

一、概述
Thymeleaf是Java模板引擎,支持HTML原型,既可以让前端工程师在浏览器中直接打开查看样式,也可以让后端工程师结合真实数据查看显示效果,同时,spring boot提供了thymeleaf自动化配置解决方案,因此在spring boot中使用thymeleaf非常方便。
二、整合thymeleaf
1、创建工程
新建一个spring boot工程,添加依赖:

Spring boot-整合thymeleaf_第1张图片
2、配置thymeleaf
Spring boot提供了了自动化配置ThymeleafAutoConfihuration,如果开发时需要对thymeleaf进行自定义配置,可以在application.properties中进行配置,常规配置如下:
Spring boot-整合thymeleaf_第2张图片
3、配置控制器
(1)创建一个实体类。例:
Spring boot-整合thymeleaf_第3张图片
(2)创建一个controller,在controller中返回ModelAndView,如下:
Spring boot-整合thymeleaf_第4张图片
(2)创建视图:
Spring boot-整合thymeleaf_第5张图片
最后就是启动运行,访问http://localhost:8080/books即可。

你可能感兴趣的:(spring,boot,spring,boot)