데이터 삭제버튼 추가 삭제버튼은 상세페이지에 추가하겠다 (show.mustache) 삭제 수정버튼 옆에 빨간버튼으로 추가했다 컨트롤러 수정 delete() 메서드를 추가해준다 @GetMapping("/articles/{id}/delete") public String delete(@PathVariable Long id){ //1.삭제할 대상 가져오기 Article target = articleRepository.findById(id).orElse(null); //2.대상 엔티티 삭제하기 if (target!=null){ //삭제할 대상이 있는지 확인 articleRepository.delete(target); //delete() 메서드로 대상 삭제 } //3. 결과 페이지로 리다이렉트 하기 return "..