栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Spring Boot 模板引擎

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Spring Boot 模板引擎

模板引擎

前端展示的是html页面,在SpringBoot之前,需要把它们转成jsp页面,jsp的好处就是当我们查出一些数据转发到jsp页面后,可以用jsp轻松实现数据的显示及交互

SpringBoot是以jar包的方式,且用的是嵌入式的tomcat,所以不支持jsp

Thymeleaf

SpringBoot推荐使用的模板引擎,只需要导入依赖,在html加上命名空间,开箱即用,可以完全代替jsp,甚至功能更强大,即使在没有网络的环境下也能使用浏览器打开,实现了动静分离。

添加依赖


    org.springframework.boot
    spring-boot-starter-thymeleaf

再引入


Thymeleaf配置类分析

ThymeleafProperties

@ConfigurationProperties(
    prefix = "spring.thymeleaf"
)
public class ThymeleafProperties {
    private static final Charset DEFAULT_ENCODING;
    public static final String DEFAULT_PREFIX = "classpath:/templates/";
    public static final String DEFAULT_SUFFIX = ".html";
    private boolean checkTemplate = true;
    private boolean checkTemplateLocation = true;
    private String prefix = "classpath:/templates/";
    private String suffix = ".html";
    private String mode = "HTML";
    private Charset encoding;
}

可以看到默认的前缀和后缀,只需要把html页面放在templates路径下,就能自动渲染

常用的标签

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/572842.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号