<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <%@ page import="dto.Product" %> <%@ page import="dao.ProductRepository" %> Insert title here <%@ include file="menu.jsp" %>

도서 목록

<% String id = request.getParameter("id"); ProductRepository dao = ProductRepository.getInstance(); Product product = dao.getProductById(id); %>

<%=product.getPname()%>

<%=product.getDescription() %>

도서 코드 : <%=product.getProductId() %>

출판사 : <%=product.getPublisher() %>

저자 : <%=product.getAuthor() %>

재고 수 : <%=product.getUnitsInStock() %>

총 페이지 수 : <%=product.getTotalPages() %>

출판일 : <%=product.getReleaseDate() %>

<%=product.getUnitPrice() %>

상품주문 상품 목록

<%@ include file="footer.jsp" %>