如果错误是类似
org.thymeleaf.exceptions.TemplateInputException: Error resolving template "usersmanger", template might not exist or might not be accessible by any of the configured Template Resolvers (template: "x/x" - line 67, col 26)
上面的x/x表示的是文件相对路径,当你使用include或replace时忘记了文件的路径。
通常情况下页面是放在templates下面,但如果你因为需求在其底下建立一个文件夹用于存放别的页面这时候就要指明到底是哪个了,它默认是到temjplates里面直接找文件名,所以得在你引进的文件加上其目录,如下
<div th:include="~{x/x:: x}" class="hello"></div>
另外检查是否文件名是否正确。。。。。。。。