·pageContext:提供对页面属性的访问。
<% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; pageContext.setAttribute("basePath",basePath); %> |
使用: ${pageScope} |
·request: 接受客户端的jsp页面请求。
·param: 返回请求参数名称映射至单个字符串值的值。例如:请求参数名称时null或空字符串,${empty param.Name} 返回 true。
·paramValues: 返回映射到客户端的请求参数的一组值。
·pageScope: 返回页面范围的变量名。
·requestScope: 提供对请求对象的属性的访问权限。
·sessionScope: 返回会话范围内的变量名。
·applicationScope: 返回应用范围内的变量名。