必看An error happened during template parsing (template: “class path resource [templates/index.html]“)

在开发springboot整合thymeleaf框架,进行ModelAndView视图层映射的时候,一直出现

An error happened during template parsing (template: "class path resource [templates/index.html]")

 

模板解析过程中发生错误(模板:“类路径资源[templates/index.html]”)

 

百度上的说法

1.配置文件有错误

贴上我的配置文件

#配置thymeleaf
spring.thymeleaf.mode=HTML5
spring.thymeleaf.encoding=UTF-8
spring.thymeleaf.servlet.content-type=text/html
spring.thymeleaf.cache=false
spring.thymeleaf.prefix=classpath:/templates/

2.说是@Controller和@RestController功能不一样,将@Controller修改为@RestController在加上@ResponseBody(依然无效)

3.说在映射的时候实体类没有get方法,为变量加上get就可以了(结果我本来就有get方法的)

4.还有说在pom.xml文件下的build配置(都不是这个错误的解决方案)

 

排查了半天  最后终于发现了解决方案:

把https: xmlns:https="http://www.w3.org/1999/xhtml"删除

 

通常情况下是头部引用过多造成冲突,删掉就可正常运行。

 

 

你可能感兴趣的:(Java,springboot)