티스토리 뷰
[펌]
http://blog.daum.net/question0921/736
<%
Object result = request.getAttribute("result");
if(result instanceof ArrayList){ %>
<table border="1" style="text-align: center;">
<tr>
<th>ID</th><th>비밀번호</th><th>이름</th><th>이메일</th>
</tr>
<c:forEach var="member" items="<%= result %>">
<tr>
<td>${member.id}</td>
<td>${member.passwd}</td>
<td>${member.name}</td>
<td>${member.email}</td>
</tr>
</c:forEach>
</table>
<% }else{
out.print("<h3>"+result+"</h3>");
}
%>
'Jsp&Servlet' 카테고리의 다른 글
2장. 서블릿 구현 및 실행 (0) | 2018.01.03 |
---|---|
1장. 자바와 웹 (0) | 2017.12.19 |
jsp에서 자바 변수를 form 전송하기 (0) | 2017.02.01 |
JSTL의 sql을 이용하여 dataSource를 더 간편하게 사용하기 (0) | 2017.01.31 |
Connection Pool 개념 (0) | 2017.01.31 |
댓글