JspFactory.java
上传用户:sxlinghang
上传日期:2022-07-20
资源大小:1405k
文件大小:7k
源码类别:

数据库编程

开发平台:

Java

  1. /*
  2.  * The Apache Software License, Version 1.1
  3.  *
  4.  * Copyright (c) 1999 The Apache Software Foundation.  All rights 
  5.  * reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  *
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer. 
  13.  *
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in
  16.  *    the documentation and/or other materials provided with the
  17.  *    distribution.
  18.  *
  19.  * 3. The end-user documentation included with the redistribution, if
  20.  *    any, must include the following acknowlegement:  
  21.  *       "This product includes software developed by the 
  22.  *        Apache Software Foundation (http://www.apache.org/)."
  23.  *    Alternately, this acknowlegement may appear in the software itself,
  24.  *    if and wherever such third-party acknowlegements normally appear.
  25.  *
  26.  * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software
  27.  *    Foundation" must not be used to endorse or promote products derived
  28.  *    from this software without prior written permission. For written 
  29.  *    permission, please contact apache@apache.org.
  30.  *
  31.  * 5. Products derived from this software may not be called "Apache"
  32.  *    nor may "Apache" appear in their names without prior written
  33.  *    permission of the Apache Group.
  34.  *
  35.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  36.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  37.  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  38.  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  39.  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  40.  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  41.  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  42.  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  43.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  44.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  45.  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  46.  * SUCH DAMAGE.
  47.  * ====================================================================
  48.  *
  49.  * This software consists of voluntary contributions made by many
  50.  * individuals on behalf of the Apache Software Foundation.  For more
  51.  * information on the Apache Software Foundation, please see
  52.  * <http://www.apache.org/>.
  53.  *
  54.  */ 
  55.  
  56. package javax.servlet.jsp;
  57. import javax.servlet.Servlet;
  58. import javax.servlet.ServletRequest;
  59. import javax.servlet.ServletResponse;
  60. import javax.servlet.jsp.PageContext;
  61. /**
  62.  * <p>
  63.  * The JspFactory is an abstract class that defines a number of factory
  64.  * methods available to a JSP page at runtime for the purposes of creating
  65.  * instances of various interfaces and classes used to support the JSP 
  66.  * implementation.
  67.  * </p>
  68.  * <p>
  69.  * A conformant JSP Engine implementation will, during it's initialization
  70.  * instantiate an implementation dependent subclass of this class, and make 
  71.  * it globally available for use by JSP implementation classes by registering
  72.  * the instance created with this class via the static <code> setDefaultFactory() </code> method.
  73.  * </p>
  74.  */
  75. public abstract class JspFactory {
  76.     private static JspFactory deflt = null;
  77.     /**
  78.      * <p>
  79.      * set the default factory for this implementation. It is illegal for
  80.      * any principal other than the JSP Engine runtime to call this method.
  81.      * </p>
  82.      *
  83.      * @param default The default factory implementation
  84.      */
  85.     public static synchronized void setDefaultFactory(JspFactory deflt) {
  86. JspFactory.deflt = deflt;
  87.     }
  88.     /**
  89.      * @return the default factory for this implementation
  90.      */
  91.     public static synchronized JspFactory getDefaultFactory() {
  92. return deflt;
  93.     }
  94.     /**
  95.      * <p>
  96.      * obtains an instance of an implementation dependent 
  97.      * javax.servlet.jsp.PageContext abstract class for the calling Servlet
  98.      * and currently pending request and response.
  99.      * </p>
  100.      *
  101.      * <p>
  102.      * This method is typically called early in the processing of the 
  103.      * _jspService() mehtod of a JSP implementation class in order to 
  104.      * obtain a PageContext object for the request being processed.
  105.      * </p>
  106.      * <p>
  107.      * Invoking this method shall result in the PageContext.initialize()
  108.      * method being invoked. The PageContext returned is properly initialized.
  109.      * </p>
  110.      * <p>
  111.      * All PageContext objects obtained via this method shall be released
  112.      * by invoking releasePageContext().
  113.      * </p>
  114.      *
  115.      * @param servlet   the requesting servlet
  116.      * @param config    the ServletConfig for the requesting Servlet
  117.      * @param request the current request pending on the servlet
  118.      * @param response the current response pending on the servlet
  119.      * @param errorPageURL the URL of the error page for the requesting JSP, or null
  120.      * @param needsSession true if the JSP participates in a session
  121.      * @param buffer size of buffer in bytes, PageContext.NO_BUFFER if no buffer,
  122.      * PageContext.DEFAULT_BUFFER if implementation default.
  123.      * @param autoflush should the buffer autoflush to the output stream on buffer
  124.      * overflow, or throw an IOException?
  125.      *
  126.      * @return the page context
  127.      *
  128.      * @see javax.servlet.jsp.PageContext
  129.      */
  130.     public abstract PageContext getPageContext(Servlet        servlet,
  131.             ServletRequest  request,
  132.             ServletResponse response,
  133.             String        errorPageURL,
  134.             boolean         needsSession,
  135.             int             buffer,
  136.             boolean         autoflush);
  137.     /**
  138.      * <p>
  139.      * called to release a previously allocated PageContext object. results
  140.      * in PageContext.release() being invoked. This method should be invoked
  141.      * prior to returning from the _jspService() method of a JSP implementation
  142.      * class.
  143.      * </p>
  144.      *
  145.      * @param pc A PageContext previously obtained by getPageContext()
  146.      */
  147.     public abstract void releasePageContext(PageContext pc);
  148.     /**
  149.      * <p>
  150.      * called to get implementation-specific information on the current JSP engine
  151.      * </p>
  152.      *
  153.      * @return a JspEngineInfo object describing the current JSP engine
  154.      */
  155.     
  156.     public abstract JspEngineInfo getEngineInfo();
  157. }