我是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>
答案 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
。