Error resolving template [index], template might not exist or might not be accessible by any of the
解决:org.thymeleaf.exceptions.TemplateInputException: Error resolving template [index], template might not exist or might not be accessible by any of the configured Template Resolvers
在springboot整合thymeleaf,遇到错误:模板可能不存在或无法被任何配置的模板解析器访问
解决方法:在pom.xml添加
<
resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.*</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>