欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JSP————隐式对象

程序员文章站 2023-12-25 08:59:51
九大隐式对象   jsp隐式对象的作用范围仅限于servlet的_service方法,所以在jsp声明中不能使用这些隐式对象 pagecontext pagecontext= null;...
九大隐式对象
 
jsp隐式对象的作用范围仅限于servlet的_service方法,所以在jsp声明中不能使用这些隐式对象
pagecontext pagecontext= null;
httpsession session= null;
servletcontext application= null;
servletconfig config= null;
jspwriter out= null;
object page= this;
throwable exception= org.apache.jer.runtime.jspruntimelibrary.getthrowable(request);
if (exception != null) {
              response.setstatus(httpservletresponse.sc_internal_server_error);
       }                 
还有request      response              自己找个方法记住方便使用(rrcaoppse)

上一篇:

下一篇: