这篇文章主要介绍了SpringBoot抽取公共页面的方法实现过程,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习吧
1. 需求描述
我们有这样一个页面,其具有左侧导航和上侧导航,在切换不同内容过程中,左侧导航和上册导航不变,也就是说我们想将左侧导航和上侧导航这个公共部分抽取出来。
注意:使用 thymeleft 必须引入 <html lang="en" xmlns:th="http://www.thymeleaf.org">
2. 使用 thymeleaf 抽取公共页面方法
利用 thymeleaf 的 insert、replace 及 include 方法。
首先创建一公共页面 html,叫做 common.html,把公共的内容放进去。并通过 id="leftmenu"
或 th:fragment="headermenu"
标注需要抽取的内容。
方法一 id="leftmenu"
:
<!-- left side start-->
<div id="leftmenu" class="left-side sticky-left-side"> 内容 </div>
<!-- left side end-->
方法二th:fragment="headermenu"
:
<!-- header section start-->
<div th:fragment="headermenu" class="header-section">内容 </div>
<!-- header section end-->
在需要引入的位置,通过insert、replace 及 include 方法引入 引入 id="leftmenu"
标识的公共部分 (要加 #
号):
<div th:replace="common :: #leftmenu"></div>
引入通过 th:fragment="headermenu"
标识的公共部分:
<div th:replace="common :: commonheader"> </div>
3. insert与replace及include抽取公共页面的区别
- insert: 保留原来大标签,也保留引入部分的标签
- replace: 保留原来的大标签,不保留引入部分的标签
- include: 不保留原来的大标签,保留引入部分的标签
以插入下列 commonheader 为例:
commonheader 在 common.html 的 header 中,是每个页面都要引入的 css 及 js 文件
<head th:fragment="commonheader">
<!--common-->
<link href="css/style.css" rel="external nofollow" th:href="@{/css/style.css}" rel="external nofollow" rel="stylesheet">
<link href="css/style-responsive.css" rel="external nofollow" th:href="@{/css/style-responsive.css}" rel="external nofollow" rel="stylesheet">
<script src="anMvaHRtbDVzaGl2Lmpz" th:src="QHsvanMvaHRtbDVzaGl2LmpzfQ=="></script>
<script src="anMvcmVzcG9uZC5taW4uanM="th:src="QHsvanMvcmVzcG9uZC5taW4uanN9" ></script>
</head>
1. 使用 include
:
<div th:include="common :: commonheader"> </div>
结果引入部分无大标签 header(检查页面源代码功能),但是 div 还在:
2. 使用 replace
:
<div th:replace="common :: commonheader"> </div>
结果引入部分含大标签 header,浏览器语法检测处理掉了,但是没有 div(检查页面源代码功能):
2. 使用 insert
:
<div th:insert="common :: commonheader"> </div>
结果引入部分含大标签 header,也含 div(检查页面源代码功能):
到此这篇关于SpringBoot公共页面抽取方法实现过程介绍的文章就介绍到这了,更多相关SpringBoot公共页面内容请搜索编程学习网以前的文章希望大家以后多多支持编程学习网!
本文标题为:SpringBoot公共页面抽取方法实现过程介绍
- SpringBoot使用thymeleaf实现一个前端表格方法详解 2023-06-06
- Java实现顺序表的操作详解 2023-05-19
- JSP页面间传值问题实例简析 2023-08-03
- Spring Security权限想要细化到按钮实现示例 2023-03-07
- ExecutorService Callable Future多线程返回结果原理解析 2023-06-01
- 深入了解Spring的事务传播机制 2023-06-02
- JSP 制作验证码的实例详解 2023-07-30
- Java中的日期时间处理及格式化处理 2023-04-18
- Springboot整合minio实现文件服务的教程详解 2022-12-03
- 基于Java Agent的premain方式实现方法耗时监控问题 2023-06-17