7. books.jsp 파일에서 도서 이미지를 출력하기 위해 다음과 같이 수정합니다.
코드 17-15 books.jsp
<%@ page contentType="text/html; charset=utf-8" %>
...
<c:forEach items="${bookList}" var="book">
<div class="col-md-4">
<c:choose>
<c:when test="${book.getBookImage() == null}">
<img src="<c:url value="C:\\upload\\${book.fileName}"/>" style="width: 60%"/> ➊
</c:when>
<c:otherwise>
<img src="<c:url value="C:\\upload\\${book.fileName}"/>" style="width: 60%"/> ➊
</c:otherwise>
</c:choose>
<h3>${book.name}</h3>
<p>${book.author}
<br>${book.publisher} | ${book.releaseDate}
<p align=left>${fn:substring(book.description, 0, 100)}...
<p>${book.unitPrice}원
<p><a href="<c:url value="/books/book?id=${book.bookId}"/>" class="btn btn-Secondary" role="button">상세정보 »</a>
</div>
</c:forEach>
...
➊ 도서 이미지가 업로드되어 저장되는 경로인 C:\\upload/로 수정했습니다.