且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Java:thymeleaf模板引擎

更新时间:2022-08-22 14:50:42

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>