<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org" lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div class="container">
<div>
<table>
<thead>
<tr>
<th>#</th>
<th>이름</th>
</tr>
</thead>
<tbody>
<tr th:each="member : ${members}">
<td th:text="${member.id}"></td>
<td th:text="${member.name}"></td>
</tr>
</tbody>
</table>
</div>
</div>
</body>
</html>
지금은 메모리에 데이터를 저장해놨기 때문에, 서버를 껐다가 다시 켜면 당연히 회원 리스트가 다 사라져있을 것이다. 다음 포스팅에서는 DB에 회원 데이터를 저장해볼 것이다.