什麼是JSP的内置對象?
概念:在JSP頁面中可以直接使用的Java的對象,如:out
九個内置對象
對象名 | 對應的類型 | 功能描述 |
request | HttpServletRequest | 請求對象 |
response | HttpServletResponse | 響應對象 |
pageContext | PageContext | 頁面上下文對象 |
session | HttpSession | 會話對象 |
application | ServletContext | 上下文對象 |
config | ServletConfig | 配置對象 |
out | JspWriter | 輸出對象 |
page | this | 表示目前的Servlet對象 |
exception | Throwable | 異常對象,隻能于錯誤頁面 |