Java Web 第9天 jsp 2

5.       JSP 标准动作、

JSP 指令用于页面与容器间的通信,而 JSP 标准动作用于页面与页面或者页面与组件间的通信。如:

<jsp:include page=”localURL” flush=”true”>

 

6.       JSP 隐式对象

_jspService 方法中定义了以下 9 个属性:

JspFactory _jspxFactory = null;

    PageContext pageContext = null;

    HttpSession session = null;

    ServletContext application = null;

    ServletConfig config = null;

    JspWriter out = null;

    Object page = this;

    JspWriter _jspx_out = null;

PageContext _jspx_page_context = null;

       我们在运用这 9 个属性的时候就不需要另外地进行声明,直接拿来使用就可以。这 9 个属性也称为隐式属性。

你可能感兴趣的:(Java Web 第9天 jsp 2)