doGet()
CODEDRAGON ㆍDevelopment/JSP
반응형
doGet()
html내 form태그의 method속성이 get일 경우 호출 됩니다.
웹브라우저의 주소창을 이용하여 servlet을 요청한 경우에도 호출 됩니다.
doGet메소드는 매개변수로 HttpServletRequest와 HttpServletResponse를 받습니다
HTML 페이지 | <form action="/servletMain/lauch" method="get"> ... </form>
|
Servlet 자바파일 | protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { }
|
'Development > JSP' 카테고리의 다른 글
자카르타 DBCP API 다운받기 - download (0) | 2016.11.21 |
---|---|
JSTL(JSP standard Tag Library) 다운받기 (0) | 2016.11.15 |
doPost() (0) | 2016.10.23 |
JSP태그 종류 (0) | 2016.10.17 |
request.getRealPath() deprecated 메소드 대체 함수 (0) | 2016.10.11 |