C : create
R : read
U : update
D : delete
Create
@PostMapping
@RequestBody로 받아옴
Read
@GetMapping
@RequestParam (uri 통해서 value 받아옴)
@PathVariable(uri 통해서 내용 받아옴)
Update
@PutMapping / @PatchMapping
@RequestBody
@PathVariable
Delete
@DeleteMapping
@PathVariable
'Spring' 카테고리의 다른 글
[TIL] 231214 ResponseEntity (0) | 2023.12.14 |
---|---|
[TIL] 231213 스프링 입문 | 김영한 인프런 (0) | 2023.12.13 |
[TIL] 231211 Spring Security 관리자 페이지 만들기, Spring 댓글 페이지, 프로젝트 회고 (2) | 2023.12.11 |
[TIL] 231207Spring Web, WAS, Servlet, HttpServlertRequest (1) | 2023.12.07 |
[TIL] 231206Spring @RequestParam (0) | 2023.12.06 |