Revert "1. DB 연결 관련 Dao, Vo 자바 파일 생성"

This reverts commit e2e4c47a15.
This commit is contained in:
mcutegs2
2020-06-15 19:24:05 +09:00
parent e2e4c47a15
commit 9bc7963d4c
10 changed files with 25 additions and 440 deletions

View File

@@ -11,7 +11,6 @@ import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import command.BoardViewCommand;
import command.Command;
import command.HomeCommand;
import command.UserJoinCommand;
@@ -37,7 +36,6 @@ public class Fcontroller extends HttpServlet {
list.put("/patientlogin.do", new patientLoginCommand()); // 환자 로그인 처리
list.put ("/UserJoin.do", new UserJoinCommand()); // 임직원 회원가입 페이지
list.put ("/patientJoin.do", new patientJoinCommand()); // 환자 회원가입 페이지
list.put("/boardView.do", new BoardViewCommand()); // 데이터 보기 test 페이지
//이 부분에 계속적으로 매핑을 추가하면 됨
}