org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template

org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template

在使用springboot与thymeleaf写项目时遇到了一个坑人的问题。使用thymeleaf的“**~{}**”导入模板

代码如下:

自定义公告列表公共模板:
org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template_第1张图片
在index.html引入模板:
org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template_第2张图片
controller层:
org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template_第3张图片
运行结果:
org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template_第4张图片
org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template_第5张图片
在网上搜索了很久错误的原因,发现别人说的注意点我都注意了,还换了很多种测试方法,都没有找出原因。最后,一向只喜欢看报错前面的我翻了控制台后面的报的错误:
在这里插入图片描述
发现我的源代码将写了“${notice.noticeTitle}”的部分注释掉了,但是报错中有注释了的内容。我把注释了的内容直接删了,结果运行成功。

以后一定要注意,在使用thymeleaf出现报错,查找错误的时候,一定要删除错误或者不需要的代码,不要使用注释!!!

你可能感兴趣的:(spring,boot,html,css,java)