百里香为什么不插入我的html代码块?

时间:2019-02-14 10:02:44

标签: html thymeleaf

这是一个非常琐碎的问题:为什么百里香不连接我的html代码?我看了各种stackoverflow问题,但我真的不明白这里是什么问题。

index.html

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml"
    xmlns:th="http://www.thymeleaf.org"
    xmlns:sec="http://www.thymeleaf.org">

<body>
<div th:replace="header::head"></div>

    <h1>Hello </h1>



</body>


</html>

header.html

<div th:fragment="head">
    <header>
        <ol>
            <li>Home</li>
            <li>About</li>
        </ol>
    </header>

    <h2>Imported</h2>
</div>

文件层次结构

enter image description here

谢谢

1 个答案:

答案 0 :(得分:0)

您应将模板(index.htmlheader.html)从static文件夹移至templates文件夹。

templates中的文件由Thymeleaf处理。
来自static的文件按“原样”提供。