Skip to content

Instantly share code, notes, and snippets.

@ksakae1216
Created June 16, 2016 02:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksakae1216/c051267764cc7d90f9e5c1b0b2b2371e to your computer and use it in GitHub Desktop.
Save ksakae1216/c051267764cc7d90f9e5c1b0b2b2371e to your computer and use it in GitHub Desktop.
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
DBの値を一覧表示!
<br>
<table>
<tr>
<th>No</th>
<th>DBの値</th>
</tr>
<c:forEach items="${dbdata}" var="dbdataLine">
<tr>
<td>${dbdataLine.col1}</td>
<td>${dbdataLine.col2}</td>
</tr>
</c:forEach>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment