Created
July 9, 2018 14:26
-
-
Save samuelmale/6a9c4a1027871d562499ca9550b6f2ee to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="list"> | |
<c:forEach items="${people}" var="person"> | |
<tr> | |
<td>${person.name}</td> | |
<td>${person.birthDate}</td> | |
<td>${person.status}</td> | |
</tr> | |
</c:forEach> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment