-
pageContext가 제공하는 기본 객체 접근 메서드개발 관련/JSP 2012. 3. 8. 11:56
pageContext가 제공하는 기본 객체 접근 메서드
메서드 리턴 타입 설 명 getRequest() ServletRequest request 기본 객체를 구한다. getResponse() ServletResponse response 기본 객체를 구한다. getSession() HttpSession session 기본 객체를 구한다. getServletContext() ServletContext application 기본 객체를 구한다. getServletConfig() ServletConfig config 기본 객체를 구한다. getOut() JspWriter out 기본 객체를 구한다. getException() Exception exception 기본 객체를 구한다. getPage() Object page 기본 객체를 구한다.
출처: 최범균의 JSP 2.1 웹프로그래밍
사이트: http://cafe.daum.net/javacan
'개발 관련 > JSP' 카테고리의 다른 글
application 기본 객체가 제공하는 서버 정보 관련 메서드 (0) 2012.03.08 application 기본 객체의 웹 어플리케이션 초기화 파라미터 관련 메서드 (0) 2012.03.08 out 기본 객체의 버퍼 관련 메서드 (0) 2012.03.08 String 클래스가 제공하는 메서드 (0) 2012.03.06 response 기본 객체 (0) 2012.03.02