对象变量名,可直接在jsp中使用 对象类型
config ServletConfig
application ServletContext
response HttpServletResponse
request HttpServletRequest
session HttpSession
out JspWriter
page this(当前servlet对象)
exception Throwable
pageContext PageContext
注意:
exception对象不是每个页面都有 只有是错误页面(errorPage),并且 isErrorPage属性设置为true
session 对象也不是每个页面都有 默认情况下有,但是如果将page指令的 session=”false”,则没有session内置对象