Revert "Revert "1. DB 연결 관련 Dao, Vo 자바 파일 생성""
This reverts commit 9bc7963d4c.
This commit is contained in:
20
hospital/src/main/java/command/BoardViewCommand.java
Normal file
20
hospital/src/main/java/command/BoardViewCommand.java
Normal 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";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user