게시글 삭제
by 볼빵빵오춘기board2detail.html
<button onclick="deleteReq()">삭제</button>
<script th:inline="javascript">
const deleteReq = () => {
console.log("삭제 요청");
const id = [[${board.id}]];
location.href = "/board2/delete/" + id;
}
</script>
Board2Controller
@GetMapping("/delete/{id}")
public String delete(@PathVariable Long id){
board2Service.delete(id);
return "redirect:/board2/";
}
Board2Service
public void delete(Long id) {
board2Repository.deleteById(id);
}
'강의 따라하기 > member2' 카테고리의 다른 글
게시글 페이징_페이징 객체 (0) | 2023.12.29 |
---|---|
게시글 페이징_페이징 요청 (0) | 2023.12.29 |
게시글 수정 (1) | 2023.12.29 |
게시글 조회(상세조회,view page) (0) | 2023.12.29 |
게시글 목록 (1) | 2023.12.29 |
블로그의 정보
Hello 춘기's world
볼빵빵오춘기