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

@@ -1,20 +0,0 @@
package command;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import DB.BoardDao;
import DB.BoardVo;
public class BoardViewCommand implements Command {
public BoardViewCommand() {
}
public String exec(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
return "boardView.jsp";
}
}