Spring Boot/Framework
[Springboot] Delete API
오늘도개발
2024. 1. 27. 19:40
1. Delete API 란?
- 리소스를 삭제하는 작업
- CRUD의 D(Delete)에 해당
2. Delete 관련 Annotation
- DeleteMapping("uri") :
- PathVariable 이나 RequestParam을 사용하여 데이터를 받아올 수 있다.