view.jsp에 게시물 삭제 링크 추가
<a href="/board/modify?bno=${view.bno}">게시물 수정</a>
<a href="/board/delete?bno=${view.bno}">게시물 삭제</a>
추가 확인
<!-- 게시글 삭제 -->
<delete id="delete" parameterType="int">
DELETE FROM tbl_board
WHERE bno = #{bno}
</delete>
BoardDAO
//게시글 삭제
public void delete(int bno) throws Exception;
BoardDAOImple
//게시글 삭제
@Override
public void delete(int bno) throws Exception {
sqlTemplate.delete("board.delete",bno);
}
BoardService
//게시글 삭제
public void delete(int bno) throws Exception;
BoardServiceImple
//게시글 삭제
@Override
public void delete(int bno) throws Exception {
boardDAO.delete(bno);
}
BoardController
//게시글 삭제
@GetMapping("/delete")
public String getDelete(@RequestParam("bno") int bno) throws Exception{
boardService.delete(bno);
return "redirect:/board/list";
}
테스트하기
'BACKEND > Spring' 카테고리의 다른 글
게시판 만들기 - 페이징 기능 구현 (1) | 2023.10.24 |
---|---|
게시판 만들기 - 조회수 증가(UPDATE) 기능 추가 (0) | 2023.10.24 |
게시판 만들기 - 메뉴 모듈화 include,날짜 format (0) | 2023.10.23 |
게시판 만들기 - modify.jsp(수정 페이지) 및 DAO,Service, Controller (1) | 2023.10.23 |
게시판 만들기 - view.jsp(게시글 조회) 및 DAO, Service, Controller (1) | 2023.10.23 |