@Responsbody가 없을경우에는 View페이지 이름이 된다. (직접응답) @ResponseBody에 Map형식의 응답이 Json형태로 응답바디에 쓰기가 됨 응답내용 담기(OK응답) public ResponseEntity putCar(String prod_no, int quantity, HttpSession session) { Map cart = (Map)session.getAttribute("cart"); if(cart == null) { cart = new HashMap(); session.setAttribute("cart", cart); } Integer oldQuantity = (Integer)cart.get(prod_no); if(oldQuantity != null) { quantity +=..