我正在使用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)
我在about.html文件中使用此导入:
<div th:replace="footer.html"></div>
我无法通过IntelliJ或SpringBoot Maven插件使其工作。我正在使用嵌入式Tomcat来运行这个项目。我已经尝试将片段放入模板下的片段文件夹中,这也是
<div th:fragment="footer.html"></div>
任何帮助将不胜感激。
答案 0 :(得分:2)
你的footer.html是什么样的? 如果你想使用片段,你必须这样做:
<div th:replace="footer :: fragmentName"></div>
在footer.html内你会有像
这样的东西<div th:fragment="fragmentName">Hello World</div>