在使用spring boot 加thymeleaf组合情况下

 

出现这种问题可能是有以下两种情况:

一是你的在配置资源文件的时候出现问题:

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

第二种情况:

在html里面使用到的El表达式的属性名要和实体类的相同!

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

User实体类:

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

基本是以上两种情况的问题,如果还没解决的话可以再自行百度吧....

相关文章: