Java:thymeleaf模板引擎

1、thymeleaf模板引入

通用的底部footer.html

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">

<footer th:fragment="common">  
    <!--底部内容-->
</footer>

</html>

index.html引入

<!-- include只是加载 -->
<div th:include="footer :: common"></div>

<!-- replace是替换 -->
<div th:replace="footer :: common"></div>
上一篇:导入MySQL官方样本数据库employees的问题


下一篇:Python 爬虫 urllib 使用和进阶 | 学习笔记