일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- object
- 게시판
- 출처 : https://joshua1988.github.io/web-development/javascript/promise-for-beginners/
- http://jeonghwan-kim.github.io/dev/2019/06/25/react-ts.html
- toString
- 출처 : https://webdir.tistory.com/506
- https://velog.io/@velopert/create-typescript-react-component
Archives
- Today
- Total
Back Ground
게시판 만들기 - Action 본문
package action;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public interface Action {
public void execute(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException;
//request영역의 request 와 response 를 사용을 인터페이스로 만든다.
}
' JSP > 게시판 만들기' 카테고리의 다른 글
게시판 만들기 - ListAction 게시글 리스트를 위한 액션 클래스 (2) | 2016.06.16 |
---|---|
게시판 만들기 - ActionFactory (0) | 2016.06.16 |
게시판 만들기 - Servlet (0) | 2016.06.16 |
게시판 만들기 - JS 자바스크립트 (0) | 2016.06.16 |
게시판 만들기 - VO (0) | 2016.06.15 |
Comments