| pageScope |
获取 page 范围的变量 |
| requestScope |
获取 request 范围的变量 |
| sessionScope |
获取 session 范围的变量 |
| applicationScope |
获取 application 范围的变量 |
| param |
相当于 request.getParameter(String name),获取单个参数的值 |
| paramValues |
相当于 request.getParameterValues(String name),获取参数集合中的变量值 |
| header |
相当于 request.getHeader(String name),获取 HTTP 请求头信息 |
| headerValues |
相当于 request.getHeaders(String name),获取 HTTP 请求头数组信息 |
| initParam |
相当于 application.getInitParameter(String name),获取 web.xml 文件中的参数值 |
| cookie |
相当于 request.getCookies(),获取 cookie 中的值 |
| pageContext |
表示当前 JSP 页面的 pageContext 对象 |