码迷,mamicode.com
首页 > Web开发 > 详细

JSP接口浅析

时间:2018-08-12 17:22:37      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:隐式   exception   blog   base   res   this   details   org   ring   

一、tree型关系

JSP页面继承了org.apache.jasper.runtime.HttpJspBase抽象类并实现了org.apache.jasper.runtime.JspSourceDependent接口

技术分享图片

二、需要重写HttpJspBase中的抽象方法

public abstract void_jspService(HttpServletRequest paramHttpServletRequest, HttpServletResponseparamHttpServletResponse)

    throws ServletException, IOException;

JspSourceDependent接口中的抽象Map键值对

public abstract Map<String, Long> getDependants();//基本抽象键值对

三、JSP9个隐式对象

finaljavax.servlet.jsp.PageContext pageContext;//service方法定义

javax.servlet.http.HttpSessionsession = null;//service方法定义

finaljavax.servlet.ServletContext application;//service方法定义

finaljavax.servlet.ServletConfig config;//service方法定义

javax.servlet.jsp.JspWriterout = null;//service方法定义

final java.lang.Objectpage = this;//service方法定义

finaljavax.servlet.http.HttpServletRequest request//service方法参数

finaljavax.servlet.http.HttpServletResponse response//service方法参数

Excpetion // exception -java.lang.Throwable错误对象,只有在JSP页面的page指令中指定isErrorPage="true"后,才可以在本页面使用exception对象。

JSP接口浅析

标签:隐式   exception   blog   base   res   this   details   org   ring   

原文地址:https://www.cnblogs.com/borter/p/9463232.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!