HTML은 POST, GET 방식의 요청만 지원 Spring은 POST, GET 방식을 이용해 PUT과 DELETE 방식을 사용할 수 있는 기능을 지원 설정 application.properties spring.mvc.hiddenmethod.filter.enabled=true 사용 방법 //게시글 삭제하기 @DeleteMapping("/post/{id}") public String delete(@PathVariable("id") Long id) { boardService.deletePost(id); return "redirect:/"; } 삭제 참고문헌: https://earth-95.tistory.com/49