[Servlet&JSP] Chap 10. 댓글 작성 로직(MVC2 패턴)

김승현·2021년 12월 14일
0
post-custom-banner
  1. boardSelectContent.jsp

    • 로그인 유무에 따라 댓글 작성 제한
      • 로그인 : 폼태그 생성 - 댓글 작성, 게시글번호(type="hidden"), currentPage(type="hidden"), 작성 버튼
      • 비로그인 : 댓글작성 비활성화, 로그인 버튼
    • 작성 버튼 클릭 -> BoardCommentWriteServlet(/board/boardCommentWrite.do)
  2. BoardCommentWriteServlet(/board/boardCommentWrite.do)

    • 인코딩
    • 넘겨온 값 받기(댓글 , 게시글번호, currentPage)
    • userId 받아오기
    • 4개 값 BoardComment에 담아서 비즈니스 로직( <->Service <-> DAO)
      • BoardComment.java 파일 생성
    • 리턴값 받아오기
    • 리턴값에 따라 페이지 이동
      • 정상 : ->BoardSelectContentServlet (/board/boardSelectContent.do)로 이동 with boardNo, currenPage
        • 게시글, 댓글 출력하는 Servlet
      • 비정상 : ->error.jsp로 이동
profile
개발자로 매일 한 걸음
post-custom-banner

0개의 댓글