- Published on
Request method 'METHOD명' not supported
- Authors
- Name
- ywj9811
RESTful한 API를 작성하기 위해서 DELETE, PUT 을 사용하면 갑자기 SpringBoot가 거절하는 것을 겪을 수 있다.
DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'DELETE' not supported]
이러한 에러가 뜬다.
이 경우 application.properties에 다음을 추가해주면 된다.
//PUT, DELETE 허락
spring.mvc.hiddenmethod.filter.enabled=true