@Requestparam의 쓰임에 대해 헷갈리는 부분이 있었습니다. 따라서 이번 포스팅에서는 @RequestParam에서 select tag의 필드를 직접 가져올 수 있는 이유에 대해 예시 코드를 바탕으로 이해해보는 시간을 가져보도록 하겠습니다. thymeleaf.html 회원선택 Controller.class @PostMapping("/order") public String order(@RequestParam("memberId") Long memberId, @RequestParam("itemId") Long itemId, @RequestParam("count") int count){ orderService.order(memberId, itemId, count); return "redirect:/orde..