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)
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)