8. 도서 상세 페이지 book.jsp 파일에 업로드한 도서 이미지의 파일을 출력하려면 다음과 같이 수정합니다.
코드 9-10 book.jsp
<%@ page contentType="text/html; charset=utf-8" %>
...
<div class="container">
<div class="row">
<div class="col-md-4">
<c:choose>
<c:when test="${book.getBookImage() == null}">
<img src="<c:url value="C:\\upload\\${book.getBookId()}.png"/>" style="width: 100%"/>
</c:when>
<c:otherwise>
<img src="<c:url value="C:\\upload\\${book.getBookImage().getOriginalFilename()}"/>" style="width: 100%"/>
</c:otherwise>
</c:choose>
</div>
<div class="col-md-8">
<h3>${book.name}</h3>
<p>${book.description}</p>
...