➌
<form:form name="removeForm" method="put">
<c:forEach items="${cart.cartItems}" var="item">
<tr>
<td>${item.value.book.bookId}-${item.value.book.name}</td>
<td>${item.value.book.unitPrice}</td>
<td>${item.value.quantity}</td>
<td>${item.value.totalPrice}</td>
<td><a href="javascript:removeFromCart('../cart/remove/${item.value.book.bookId}')" class="badge badge-danger">삭제</a></td>
</tr>
</c:forEach>
</form:form>
<tr>
<th></th>
<th></th>
<th>총액</th>
<th>${cart.grandTotal}</th>
<th></th>
</tr>
</table>
...