从String启动控制器打印列表对象以查看(HTML)

时间:2017-03-03 13:04:43

标签: java spring spring-mvc spring-boot thymeleaf

我是Spring Boot的新手,请帮我解决这个问题。

这是我的控制器映射,我需要在视图中打印列表对象的所有属性。

@RequestMapping(value = "/get" , method = RequestMethod.GET)
@ModelAttribute("todolist")
public List<Todo> getuser() {
    return  (List<Todo>) todoRepository.findAll();
}

这是我的视图和link to my GitHub project。提前谢谢。

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head lang="en">
    <head>
    </head>
<body>
<table>
    <tr th:each="message : ${todolist}">
        <td th:text="${todolist.title}">Title</td>
        <td th:text="${todolist.description}">Description</td>
    </tr>
</table>
</body>
</html>

1 个答案:

答案 0 :(得分:2)

您需要使用message代替todolist

<tr th:each="message : ${todolist}">
    <td th:text="${message.title}">Title</td>
    <td th:text="${message.description}">Description</td>
</tr>

因为th:each将遍历todolist列表并将值放在message属性中。方法message是列表中一个元素的变量名。最好将其称为todo