@PutMapping, @PatchMapping, @GetMapping, @PostMapping ์ ๊ดํ์ฌ...
๐ ์ฃผ์ : "์จ๋ผ์ธ ์ผํ๋ชฐ (E-commerce)"์ํ์ ์กฐํ (@GetMapping)์๋ก์ด ์ํ์ ์ถ๊ฐ (@PostMapping)์ํ ์ ๋ณด๋ฅผ ์์ (์ ์ฒด ๋ณ๊ฒฝ) (@PutMapping)์ํ ์ ๋ณด๋ฅผ ์์ (๋ถ๋ถ ๋ณ๊ฒฝ) (@PatchMapping)โ
1. @GetMapping (์กฐํ)๐ ์ฌ์ฉ์๊ฐ ํน์ ์ํ ์ ๋ณด๋ฅผ ์กฐํํ ๋@GetMapping("/products/{id}")public ResponseEntity getProduct(@PathVariable Long id) { ProductResponseDto product = productService.getProductById(id); return ResponseEntity.ok(product);}โจ ์ค๋ช
GET /products/1 ๊ฐ์ ์..
2025.02.15