1. org.thymeleaf.exceptions.TemplateInputException: Error resolving template “index”, template might not exist or might not be accessible by any of the configured Template Resolvers at org.thymeleaf.TemplateRepository.getTemplate(TemplateRepository.java:246) ~[thymeleaf-2.1.6.RELEASE.jar:2.1.6.RELEASE]
在你的controller层对应的方法返回html路径及名称时,在前面多加了一个/ 。
例如return “/index”,正式这个/导致报错的,解决:去掉返回前面的/即可,例如return “/index”,改为"index”。