JSP implicit object |
Type |
Typical use by the scriptlet writer |
pageContext |
javax.servlet.jsp.PageContext |
Barely in use. This is more of a backbone object used by the servlet that was autogenerated from the servlet code. We will discuss the autogenerated servlet later in this chapter. |
request |
javax.servlet.http.HttpServletRequest |
Queries request information; for example, queries form parameters, inbound cookies, request headers, etc. |
response |
javax.servlet.http.HttpServletResponse |
Manipulates the response; for example, add cookies, redirect, etc. |
session |
javax.servlet.http.HttpSession |
Accesses the session state information associated with the request. For example, get/set session attributes or invalidate the session. |
config |
javax.servlet.ServletConfig |
Obtains configuration parameters for this page. |
application |
javax.servlet.ServletContext |
Obtains configuration parameters for this application and uses its utility method (for example, log()). |
out |
javax.servlet.jsp.JspWriter |
Writes data into the page and manipulates the output buffer used by JSP. |
page |
java.lang.Object |
Represents the Java this variable for the current page invocation. |
exception |
java.lang.Exception |
In error pages only (see more on error pages in the upcoming sections), represents the exception that triggered the error page. |
正文
JSP隐式对象2007-04-09 11:27:00
【评论】 【打印】 【字体:大 中 小】 本文链接:http://blog.pfan.cn/hurongliang/24717.html
阅读(3317) | 评论(0)
版权声明:编程爱好者网站为此博客服务提供商,如本文牵涉到版权问题,编程爱好者网站不承担相关责任,如有版权问题请直接与本文作者联系解决。谢谢!
评论