JSP————隐式对象
来源:未知 责任编辑:责任编辑 发表时间:2015-10-08 14:15 点击:次
九大隐式对象
JSP隐式对象的作用范围仅限于Servlet的_jspService方法,所以在JSP声明中不能使用这些隐式对象
PageContext pageContext= null;
HttpSession session= null;
ServletContext application= null;
ServletConfig config= null;
JspWriter out= null;
Object page= this;
Throwable exception= org.apache.jasper.runtime.JspRuntimeLibrary.getThrowable(request);
if (exception != null) {
response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
}
还有Request Response 自己找个方法记住方便使用(rrcaoppse)
JSP隐式对象的作用范围仅限于Servlet的_jspService方法,所以在JSP声明中不能使用这些隐式对象
PageContext pageContext= null;
HttpSession session= null;
ServletContext application= null;
ServletConfig config= null;
JspWriter out= null;
Object page= this;
Throwable exception= org.apache.jasper.runtime.JspRuntimeLibrary.getThrowable(request);
if (exception != null) {
response.setStatus(HttpServletResponse.SC_INTERNAL_SERVER_ERROR);
}
还有Request Response 自己找个方法记住方便使用(rrcaoppse)
相关新闻>>
- 发表评论
-
- 最新评论 更多>>