API 와 JSON 추가

This commit is contained in:
2023-10-24 17:12:15 +09:00
parent b9616eae65
commit 225723fe48
4 changed files with 365 additions and 6 deletions

View File

@@ -6,7 +6,26 @@
<meta charset="UTF-8">
<title>Insert title here</title>
</head>
<body>
${ name }
<body>
${ start } <br><br><br>
전체보기 <br>
${ name } <br><br><br>
<c:forEach items="${list}" var="profile">
<table border="1" bordercolor="blue" width ="50%" height="100">
<thead>
<tr align = "center" >
<td><c:out value="${profile.id}" /></td>
<td><c:out value="${profile.name}" /></td>
<td><c:out value="${ profile.phone}" /></td>
<td><c:out value="${ profile.address}" /></td>
<td><c:out value="${ profile.filepath}" /><br></td>
</tr>
</thead>
</table>
</c:forEach>
</body>
</html>