1. DB 연결 관련 Dao, Vo 자바 파일 생성
2. Fcontroller에 해당 내용 추가 및 임포트 3. 출력 테스트를 위한 View 파일 추가
This commit is contained in:
@@ -11,6 +11,7 @@ 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;
|
||||
@@ -36,6 +37,7 @@ 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 페이지
|
||||
//이 부분에 계속적으로 매핑을 추가하면 됨
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user