반응형
1. JSP가 제공하는 기본객체
구분 | Type | Description |
request | javax.servlet.http.HttpServletRequest | 클라이언트의 요청정보를 저장 |
response | javax.servlet.http.HttpServletResponse | 응답 정보를 저장함 |
pageContext | javax.servlet.jsp.PageContext | JSP 페이지에 대한 정보를 저장 |
session | javax.servlet.http.HttpSession | HTTP 세션정보 저장 |
application | javax.servlet.ServletContext | 웹 어플리케이션에 대한 정보 저장 |
out | javax.servlet.jsp.JspWriter | JSP 페이지가 생성하는 결과를 출력할 때 사용되는 출력스트림 |
config | javax.servlet.ServletConfig | JSP 페이지에 대한 설정정보를 저장 |
Page | java.servlet.Object | JSP 페이지를 구현한 자바 클래스 인스턴스 |
Exception | java.lang.Throwable | 익셉션 객체. 에러 페이지에서만 사용 |
2. pageContext가 제공하는 기본 객체 접근 메소드
구분 | Type | Description |
getRequest() | ServletRequest | request 기본 객체를 구함 |
getResponse() | ServletResponse | response 기본 객체를 구함 |
getSesion() | HttpSession | session 기본 객체를 구함 |
getServletContext() | ServletContext | application 기본 객체를 구함 |
getServletConfig() | ServletConfig | config 기본 객체를 구함 |
getOut() | JspWriter | out 기본 객체를 구함 |
getException | Exception | exception 기본 객체를 구함 |
getPage() | Object | page 기본 객체를 구함 |
반응형
'개발 및 관리 > Java' 카테고리의 다른 글
<jsp:include> 액션태크와 include DIRECTIVE의 차이 (0) | 2016.03.01 |
---|---|
application 기본 객체의 웹 어플리케이션 초기화 파라미터 관련 메소드 (0) | 2016.03.01 |
JSP 주석 vs JAVA 주석 vs HTML 주석 (0) | 2016.02.21 |
implicit casting 와 특수문자 (0) | 2016.02.21 |
WAS 관련 서적 (0) | 2016.02.14 |