일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 게시판
- http://jeonghwan-kim.github.io/dev/2019/06/25/react-ts.html
- object
- 출처 : https://webdir.tistory.com/506
- https://velog.io/@velopert/create-typescript-react-component
- toString
- 출처 : https://joshua1988.github.io/web-development/javascript/promise-for-beginners/
Archives
- Today
- Total
Back Ground
게시판 만들기 - BoardCheckPassFormAction 본문
package controller.action;
import java.io.IOException;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import action.Action;
//비밀번호 입력 화면으로 이동하게 하는 액션 클래스
public class BoardCheckPassFormAction implements Action{
@Override
public void execute(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String url = "view/boardCheckPass.jsp";
RequestDispatcher dispatcher = request.getRequestDispatcher(url); //boardCheckPass.jsp로 이동
dispatcher.forward(request, response);
}
}
' JSP > 게시판 만들기' 카테고리의 다른 글
게시판 만들기 - BoardCheckPassAction (0) | 2016.06.22 |
---|---|
게시판 만들기 - JSP BoardCheckPass.jsp 비밀번호 입력 화면을 위한 JSP 페이지 (View) (0) | 2016.06.22 |
게시판 만들기 - JSP boardView.jsp 게시글 상세보기를 위한 JSP 페이지 (View) (1) | 2016.06.18 |
게시판 만들기 - BoardViewAction (0) | 2016.06.18 |
게시판 만들기 - BoardWriteAction (0) | 2016.06.18 |
Comments