Spring Boot에서 HttpMethod delete 사용할 때 주의할 점.
Http Method중 하나인 delete요청을 처리하는 기능을 추가하면서 다음과 같은 에러가 발생했습니다. There was an unexpected error (type=Method Not Allowed, status=405). Request method 'POST' not supported org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'POST' not supported HttpMethod에는 GET, POST, PUT, DELETE가 있습니다. Spring Boot에서 PUT과 DELETE요청을 어노테이션인 @DeleteMapping이나 @PutMapping을 사용할 경우는 application.pro..
2020. 10. 11.