Anerrorhappenedduringtemplateparsing(template。。。在开发springboot的时候,进⾏modelAndView 视图层映射的时候,⼀直出现
An error happened during template parsing (template: "class path resource [templates/index.html]")
模板解析过程中发⽣错误(模板:“类路径资源[templates/index.html]”)
在向index.html映射的时候出现错误,⼩编在和其他程序员⼀样打开了百度开始搜索,有各种说法
1.配置⽂件问题.(我重新看了⼀遍确定没有问题,但是还是错误)
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.t-type=text/html
ding=utf-8
de=LEGACYHTML5
spring.thymeleaf.cache=false
spring.mvc.static-path-pattern=/**
2.说是@Controller和@RestController功能不⼀样,将@Controller修改为@RestController在加上@ResponseBody(依然⽆效)、during spring怎么读
3.说在映射的时候实体类没有get⽅法,为变量加上get就可以了(结果我本来就有get⽅法的)
4.还有说在l⽂件下的build配置(都不是这个错误的解决⽅案)
<resources>
<resource>
<directory>sre/main/resources</directory>
</resource>
</resources>
最后⼩编早上智商最⾼峰的时候发现了这个⼩⼩⼩问题
在这附上⼩编index.html的⽂件开头,就是因为加了
https: xmlns:https="/1999/xhtml"
xmlns:th=""
导致调⽤的时候原本要调⽤第⼆句话的代码调⽤了第⼀句代码中的⽅法发⽣错误,把第⼀句代码删除就可以了
⼩编总结了⼀下,⼀般系统出现以下错误
An error happened during template parsing (template: "class path resource [templates/index.html]")
⼤家可以去看看视图层,并不是java代码出现错误.

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。