无法使用Thymleaf加载部分模板

时间:2018-01-04 15:17:37

标签: spring-boot thymeleaf

我的 templates / header.html 包含以下代码

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
  <head>
  </head>
  <body>
    <div class="testing" th:fragment="header">
      2016 Header
    </div>
  </body>
</html>

我的 templates / index.html 包含以下代码

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">

<head>
</head>

<body>


    <div th:insert="header :: header"></div>
    <h3>User Registration</h3>
    <form action="/AddUser" method="post">
        <input type="text" name="fname" id="lname" placeholder="Firstname"
            required /> <input type="text" name="lname" id="fname"
            placeholder="Lastname" required />
        <button type="submit">Insert</button>
    </form>

</body>
</html>

我期待index.html中的 2016标题。但是,没有任何东西被展示出来。

我在gradle依赖项中使用以下配置

compile('org.springframework.boot:spring-boot-starter-thymeleaf')

请告诉我哪里出错了。

0 个答案:

没有答案