SpringBoot中Thymeleaf创建模板
Posted itlaoqi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot中Thymeleaf创建模板相关的知识,希望对你有一定的参考价值。
SpringBoot中Thymeleaf创建模板
学习视频: http://www.itlaoqi.com/chapter/1688.html
源码地址: QQ群 814077650 , 群共享中自助下载
老齐的官网: itlaoqi.com (更多干货就在其中)
定义模板格式,使用th:fragment定义模板片段
header_footer.html
一个模板中可以使用th:fragment定义多个片段
<body>
<nav class="navbar navbar-default" th:fragment="header">
<div class="container" style="text-align: center">
<h2>《Spring Boot 实战》系列课实战案例111</h2>
</div>
</nav>
</body>
index.html中引用模板片段
<body>
<!-- 引用模板 模板引用表达式为 页面名 :: 片段id-->
<div th:insert="header_footer :: header"></div>
...
以上是关于SpringBoot中Thymeleaf创建模板的主要内容,如果未能解决你的问题,请参考以下文章
SpringbootSpringBoot基础知识及整合Thymeleaf模板引擎