1、基于“置顶-SpringBoot-最终整合”进行
2、footer.html页面
<html xmlns:th="http://www.thymeleaf.org">
<!-- 带参数 -->
<footer th:fragment="footer(host)">
<p th:text="| ${host} Year|"></p>
</footer>
</html>
3、在resources下的templates文件夹,创建hello.html
<!DOCTYPE HTML>
<!-- 声明当前文件是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
Thymeleaf-包含
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Thymeleaf 3.0 默认不包含布局模块问题:启动项目的时候发现首页空白,查看后台也没有任何的报错信息原因:...
- 原文排版更好,直接贴链接(http://blog.csdn.net/abap_brave/article/deta...
- 1. 依赖 在配置好SSM框架后,在pom.xml中添加如下依赖 2. 配置文件 在Sping_m...
- What 在thymeleaf的环境下,需要有一个onclick事件,是js并且带参数,而这个参数是带有thyme...
- Maven-SSM整合Thymeleaf模板引擎 Spring5整合(注解配置) 1. 依赖 在配置好SS...