thymeleaf:在一个页面中引入其它的页面

Posted 饶一一

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了thymeleaf:在一个页面中引入其它的页面相关的知识,希望对你有一定的参考价值。

这个在jsp中很容易实现,但是springBoot不推荐使用jsp,建议使用thymeleaf,下面是在thymeleaf中引入界面的方法

1.修改配置文件

spring:
  mvc:
    static-path-pattern: /static/**
  thymeleaf:
    prefix:
      classpath: /templates/

在springBoot中,静态资源(如js,css,图片,静态html)都放在static当中,动态资源(如html)放在templates中。

这是我的目录结构

 

 

 

 现在我要在index.html中引入main.html

 

2.修改main.html

 

 

用<div th:fragment="main"></div>把整个页面包裹起来,包裹的内容就是你要在index.html引入的部分

 

3.修改index.html,因为springBoot自动把static当作当前目录,所以要用../templates/shop/main而不是/templates/shop/main。

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
    <div th:replace="../templates/shop/main :: main"></div>
</body>
</html>

以上是关于thymeleaf:在一个页面中引入其它的页面的主要内容,如果未能解决你的问题,请参考以下文章

Thymeleaf静态资源引入方式及公共页面代码抽取

Thymeleaf基础语法

thymeleaf引入公共页面的某个片段

thymeleaf 页面布局 怎么把所有js文件放入一个页面

11SpringBoot-CRUD-thymeleaf公共页面元素抽取

怎么预览thymeleaf模板写的html页面?