java – Thymeleaf模板解析错误

前端之家收集整理的这篇文章主要介绍了java – Thymeleaf模板解析错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

当我尝试加载localhost时,我得到解析错误:8080 /.

我在模板中找不到任何错误,为什么我会犯这个错误

错误

Whitelabel Error Page
This application has no explicit mapping for /error,so you are seeing this as a fallback.
Mon Apr 20 16:59:56 EEST 2015
There was an unexpected error (type=Internal Server Error,status=500).
Exception parsing document: template="index",line 26 - column 3

模板(HTML)

查看(班级)

public String mainPage(Model model){
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
    PersonJDBCTemplate personJDBCTemplate = (PersonJDBCTemplate) context.getBean("personJDBCTemplate");
    List
最佳答案
可能是你错过了某处的结束标签.我不知道你在HTML模板中有什么,除非你发布完整的代码.

但是用这个模板替换你当前的文件.它应该工作.然后,您可以添加丢失的代码.

原文链接:https://www.f2er.com/spring/431827.html

猜你在找的Spring相关文章