圖片.png
1绑咱、基于“置頂-SpringBoot-最終整合”進(jìn)行
2茅郎、footer.html頁面
<html xmlns:th="http://www.thymeleaf.org">
<!-- 帶參數(shù) -->
<footer th:fragment="footer(host)">
<p th:text="| ${host} Year|"></p>
</footer>
</html>
3嗦玖、在resources下的templates文件夾拇派,創(chuàng)建hello.html
<!DOCTYPE HTML>
<!-- 聲明當(dāng)前文件是Thymeleaf,可以用th開頭 -->
<html xmlns:th="http://www.thymeleaf.org">
<head>
<title>Thymeleaf</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" media="all" href="../../webapp/static/css/style.css" th:href="@{/static/css/style.css}"/>
<script type="text/javascript" src="../../webapp/static/js/thymeleaf.js" th:src="@{/static/js/thymeleaf.js}"></script>
<script>
testFunction();
</script>
<style>
h2{
text-decoration: underline;
font-size:0.9em;
color:gray;
}
</style>
</head>
<body>
<!-- 包含 footer.html-->
<div class="showing">
<div th:replace="include::footer(2015)" ></div>
</div>
</body>
</html>
4待错、訪問:http://localhost:8080/system/thy1