[스프링부트-에러] Request method 'DELETE' is not supported @DeleteMapping
리뷰 좋아요를 취소(삭제) 하는 기능을 만들고 있다. @DeleteMapping 을 하니깐 Request method 'DELETE' is not supported 라는 에러가 뜬다. @DeleteMapping("/reviewlike/{uid}/{rid}") public void dropRlike(@PathVariable Long uid, @PathVariable Long rid) { rlikeService.delRlike(uid, rid); } 2024-01-26T14:57:45.272+09:00 WARN 15272 --- [io-8080-exec-10] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpRe..