티스토리 뷰
1. BoardDAO.java : 인터페이스
public void delete(Integer bno) throws Exception;
2. mapper
<delete id="delete" parameterType="hashmap">
DELETE FROM tbl_board where bno = #{bno}
</delete>
3. BoardDAOImpl.java
@Override
public void delete(Integer bno) throws Exception {
session.delete(namespace + ".delete", bno);
}
4. BoardService.java : 인터페이스
public void remove(Integer bno) throws Exception;
5. BoardServiceImpl.java
@Override
public void remove(Integer bno) throws Exception {
dao.delete(bno);
}
6. BoardController.java
@RequestMapping(value = "/remove", method = RequestMethod.POST)
public String remove(@RequestParam("bno") int bno, RedirectAttributes rttr) throws Exception {
service.remove(bno);
rttr.addFlashAttribute("msg", "SUCCESS");
return "redirect:/board/listAll";
}
'Spring' 카테고리의 다른 글
Spring Error Page (에러 페이지) 설정 (0) | 2019.06.26 |
---|---|
SPRING 수정 기능 순서 흐름 (0) | 2018.12.14 |
SPRING 조회 기능 순서 흐름 (0) | 2018.12.14 |
SPRING 리스트 기능 순서 흐름 (0) | 2018.12.14 |
SPRING 저장 기능 순서 흐름 (0) | 2018.12.14 |