当前位置: 代码迷 >> 综合 >> Spring Boot__整合 Thymeleaf 页面模板
  详细解决方案

Spring Boot__整合 Thymeleaf 页面模板

热度:39   发布时间:2023-11-14 17:36:24.0

Thymeleaf 简介
类似于 Velocity、FreeMarker 等传统 Java 模板引擎, Thymeleaf 支持 HTML 原型。它既可以在浏览器中直接打开查看样式, 也可以结合真实数据查看显示效果,同时,SpringBoot 提供了 Thymeleaf 自动化配置解决方案,因此在 SpringBoot 中使用 Thymeleaf 非常方便。Thymeleaf 模板后缀为 .html。Thymeleaf 除了展示基本的 HTML ,进行页面渲染之外,也可以作为一个 HTML 片段进行渲染,例如我们在做邮件发送时,可以使用 Thymeleaf 作为邮件发送模板。

加依赖
在这里插入图片描述

<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId>
</dependency>
<
  相关解决方案