转自https://blog.csdn.net/qq_41426326/article/details/88837112html
在开发springboot的时候,进行modelAndView 视图层映射的时候,一直出现 java
An error happened during template parsing (template: "class path resource [templates/index.html]")程序员
模板解析过程当中发生错误(模板:“类路径资源[templates/index.html]”)spring
在向index.html映射的时候出现错误,小编在和其余程序员同样打开了百度开始搜索,有各类说法springboot
1.配置文件问题.(我从新看了一遍肯定没有问题,可是仍是错误)mvc
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.thymeleaf.servlet.content-type=text/html
spring.thymeleaf.encoding=utf-8
spring.thymeleaf.mode=LEGACYHTML5
spring.thymeleaf.cache=false
spring.mvc.static-path-pattern=/**
spring.resources.static-locations=classpath:/static/
2.说是@Controller和@RestController功能不同,将@Controller修改成@RestController在加上@ResponseBody(依然无效)、app
3.说在映射的时候实体类没有get方法,为变量加上get就能够了(结果我原本就有get方法的)ui
4.还有说在pom.xml文件下的build配置(都不是这个错误的解决方案)spa
<resources>
<resource>
<directory>sre/main/resources</directory>
</resource>
</resources>
最后小编早上智商最高峰的时候发现了这个小小小问题.net
在这附上小编index.html的文件开头,就是由于加了
https: xmlns:https="http://www.w3.org/1999/xhtml"
和
xmlns:th="http://www.thymeleaf.org"
致使调用的时候本来要调用第二句话的代码调用了第一句代码中的方法发生错误,把第一句代码删除就能够了
小编总结了一下,通常系统出现如下错误
An error happened during template parsing (template: "class path resource [templates/index.html]")
你们能够去看看视图层,并非java代码出现错误.