org.eclipse.jetty.servlets
类 CGI

java.lang.Object
  继承者 javax.servlet.GenericServlet
      继承者 javax.servlet.http.HttpServlet
          继承者 org.eclipse.jetty.servlets.CGI
所有已实现的接口:
Serializable, Servlet, ServletConfig

public class CGI
extends HttpServlet

CGI Servlet.

The cgi bin directory can be set with the "cgibinResourceBase" init parameter or it will default to the resource base of the context. If the "cgibinResourceBaseIsRelative" init parameter is set the resource base is relative to the webapp. For example "WEB-INF/cgi" would work.
Not that this only works for extracted war files as "jar cf" will not reserve the execute permissions on the cgi files.

The "commandPrefix" init parameter may be used to set a prefix to all commands passed to exec. This can be used on systems that need assistance to execute a particular file type. For example on windows this can be set to "perl" so that perl scripts are executed.

The "Path" init param is passed to the exec environment as PATH. Note: Must be run unpacked somewhere in the filesystem.

Any initParameter that starts with ENV_ is used to set an environment variable with the name stripped of the leading ENV_ and using the init parameter value.

另请参见:
序列化表格

构造方法摘要
CGI()
           
 
方法摘要
 void init()
          A convenience method which can be overridden so that there's no need to call super.init(config).
 void service(HttpServletRequest req, HttpServletResponse res)
          Receives standard HTTP requests from the public service method and dispatches them to the doXXX methods defined in this class.
 
从类 javax.servlet.http.HttpServlet 继承的方法
doDelete, doGet, doHead, doOptions, doPost, doPut, doTrace, getLastModified, service
 
从类 javax.servlet.GenericServlet 继承的方法
destroy, getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

CGI

public CGI()
方法详细信息

init

public void init()
          throws ServletException
从类 GenericServlet 复制的描述
A convenience method which can be overridden so that there's no need to call super.init(config).

Instead of overriding GenericServlet.init(ServletConfig), simply override this method and it will be called by GenericServlet.init(ServletConfig config). The ServletConfig object can still be retrieved via GenericServlet.getServletConfig().

覆盖:
GenericServlet 中的 init
抛出:
ServletException - if an exception occurs that interrupts the servlet's normal operation

service

public void service(HttpServletRequest req,
                    HttpServletResponse res)
             throws ServletException,
                    IOException
从类 HttpServlet 复制的描述
Receives standard HTTP requests from the public service method and dispatches them to the doXXX methods defined in this class. This method is an HTTP-specific version of the Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse) method. There's no need to override this method.

覆盖:
HttpServlet 中的 service
参数:
req - the HttpServletRequest object that contains the request the client made of the servlet
res - the HttpServletResponse object that contains the response the servlet returns to the client
抛出:
ServletException - if the HTTP request cannot be handled
IOException - if an input or output error occurs while the servlet is handling the HTTP request
另请参见:
Servlet.service(javax.servlet.ServletRequest, javax.servlet.ServletResponse)


Copyright © 2013. All Rights Reserved.