小编tar*_*xgg的帖子

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
Run Code Online (Sandbox Code Playgroud)

模板(HTML)

<tr th:each="customer : ${customers}">
    <td th:text="${customer.identity}">001</td>
    <td th:text="${customer.name}">Name</td>
    <td th:text="${customer.address}">Address</td>
    <td th:text="${customer.age}">Age</td>
</tr>
Run Code Online (Sandbox Code Playgroud)

查看(班级)

public String mainPage(Model model){
    ApplicationContext context = new ClassPathXmlApplicationContext("beans.xml");
    PersonJDBCTemplate personJDBCTemplate = (PersonJDBCTemplate) context.getBean("personJDBCTemplate");
    List<Person> persons = …
Run Code Online (Sandbox Code Playgroud)

html java spring thymeleaf

9
推荐指数
1
解决办法
3万
查看次数

标签 统计

html ×1

java ×1

spring ×1

thymeleaf ×1