<c:forEach> : 목록을 입력받아서 목록의 갯수만큼 반복하는 반복문
<c:forEach var="item" items="${items}" begin="0" end="10" step="1" varStatus="status">
<p>번호 : ${status.index}</p>
<p>책명 : ${item.name}</p>
<p>저자 : ${item.author}</p>
<p>출판사 : ${item.publisher}</p>
</c:forEach>
ㄴ ${items}의 0부터 10까지 반복하면서 목록을 표시