inblog logo
|
codingb
    ETC

    RestAPI 전환 - resumes/delete

    coding S's avatar
    coding S
    Apr 19, 2024
    RestAPI 전환 - resumes/delete
    @DeleteMapping("/api/resumes/{id}") public ResponseEntity<?> delete(@PathVariable Integer id) { // User sessionUser = (User) session.getAttribute("sessionUser"); resumeService.delete(id); return ResponseEntity.ok(new ApiUtil<>(null)); }

    [ DELETE - http://localhost:8080/api/resumes/1 ]

    { "status": 200, "msg": "성공", "body": null }
    notion image

    [ DB - 이력서 1번 삭제 ]

    notion image
    Share article

    codingb

    RSS·Powered by Inblog