SpringBoot Thymeleaf无法解析模板

时间:2016-03-29 13:55:59

标签: java maven intellij-idea spring-boot

我正在使用SpringBoot 1.3.3.RELEASE和Thymeleaf与IntelliJ作为我的ide。我收到了这个错误:

org.thymeleaf.exceptions.TemplateInputException: Error resolving template "footer.html", template might not exist or might not be accessible by any of the configured Template Resolvers (about:102)

我有这个项目布局: enter image description here

我在about.html文件中使用此导入:

<div th:replace="footer.html"></div>

我无法通过IntelliJ或SpringBoot Maven插件使其工作。我正在使用嵌入式Tomcat来运行这个项目。我已经尝试将片段放入模板下的片段文件夹中,这也是

<div th:fragment="footer.html"></div>

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

你的footer.html是什么样的? 如果你想使用片段,你必须这样做:

<div th:replace="footer :: fragmentName"></div>

在footer.html内你会有像

这样的东西
<div th:fragment="fragmentName">Hello World</div>