JSP:(Request,Response,Session,application,Config,PageContext,Page,exception,out)
EL:(PageContext,initParam,param,paramValues,header,headerValues,cookie,applicationScope,sessionScope)
以上是JSP和EL的隐藏对象,但是后来倡导JSP页面无JSP脚本,所以常有配置消除JSP脚本,其实EL可以通过PageContext来访问到JSP的隐藏对象,比如:${PageContext.request}
<jsp-config>
<jsp-property-group>
<url-pattern>*.jsp</url-pattern>
<scripting-invalid>true</scripting-invalid>
</jsp-property-group>
</jsp-config>