春季百里香叶页眉和页脚动态包括

2022-09-03 08:34:10

我最近在春天开始使用百里香叶模板引擎。我想实现的是 - 如果我的控制器是这个

@RequestMapping(value="/", method=RequestMethod.GET)
public String index() {
    return "homePage";
}

然后我想在主页中编写HTML代码.html没有完整的HTML定义,如头部,标题,正文等。

<div>This is home page content</div>

不想在主页写.html像这样。

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" >
<head>
    <title>Spring MVC Example</title>
</head>
<body>
    <div th:include="fragments/header::head"></div>
    <div>This is home page content</div>
    <div th:include="fragments/footer::foot"></div>
</body>

我更喜欢将标题部分用于页眉片段,来自控制器的内容和来自页脚片段的页脚。

所以总的来说 - 我如何实现这一点:

/fragment/header.html

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" >
<head>
    <title>Spring MVC Example</title>
</head>
<body>

/首页.html

<div>This is home page content</div>

(此抛出错误)

/fragment/footer.html

  </body>
 </html>

注意:我已经看过这些例子


答案 1

这就是我实现它的方式。

第 1 步:创建默认布局文件

resources/templates/layouts/default.html

<!DOCTYPE html>
<html>
<head th:replace="fragments/header :: head"></head>
<body>
   <div class="container">
     <div layout:fragment="content"></div>
     <div th:replace="fragments/footer :: footer"></div>
   </div>
</body>
</html>

第 2 步:创建页眉和页脚片段。

/resources/templates/fragments/header.html

<head th:fragment="head">
  <meta charset="utf-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
  <meta content="ie=edge" http-equiv="x-ua-compatible" />
  <title th:text="${metaTitle} ? ${metaTitle} : 'default title'"></title>
  <link rel="stylesheet" th:href="@{/css/bootstrap.min.css}"/>
  <link rel="stylesheet" href="/css/style.css"/>
</head>

/resources/templates/fragments/footer.html

<div class="footer text-center" th:fragment="footer">
  <p> <a href="#"> Terms of Use</a> | <a href="#">What's New</a> | <a href="#">Help</a> </p>
  <!-- javascripts -->
  <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js">
</script>
</div>

第 3 步:创建主页

/resources/templates/home.html

<!DOCTYPE html>
<html lang="en"
  xmlns:th="http://www.thymeleaf.org"
  xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
  layout:decorator="layouts/default">
 <body>
  <div id="page" layout:fragment="content">
  <div>This is home page content</div>
  </div>
 </body>
</html>

步骤 4(弹簧靴 2):向 pom 添加依赖项.xml

/pom.xml

<dependency>
    <groupId>nz.net.ultraq.thymeleaf</groupId>
    <artifactId>thymeleaf-layout-dialect</artifactId>
</dependency>

答案 2

我像这样解决了这个问题:

控制器定向到索引.html并提供“内容页”的属性

@RequestMapping(value={"/"})
   public String root(Locale locale, ModelMap model) {
   model.addAttribute("content", "helloWorldView");     
   return "index";
}

这是我的索引.html:

<!DOCTYPE html>
<html lang="en">
<head lang="en" th:replace="fragments/header :: header"> </head>
  <body>
  <div class="container">

     <div th:replace="@{'views/' + ${content}} :: ${content}"></div>

  </div>
<div lang="en" th:replace="fragments/footer :: footer"> </div>
</body>
</html>

所以我有一个带有页眉和页脚的文件夹片段:

fragments/header.html

<head th:fragment="header">
   //css includes etc title
</head>

fragments/footer.html

<div th:fragment="footer">
  //scripts includes
</div>

在我的文件夹视图中,我得到了所有包含内容的视图 views/helloWorldView.html:

<div th:fragment="helloWorldView">
    //Content
</div>

推荐