コード例 #1
0
ファイル: OrderController.java プロジェクト: 3ouri/ANAZON
 public String goToConfirmationPage() {
   order.setTotalPrice(order.getQuantity() * order.getProductId().getPrice());
   return "confirmationPage";
 }