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

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

View File

@@ -0,0 +1,20 @@
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";
}
}