类 ServletWorkflow

java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
com.gdxsoft.easyweb.define.servlets.ServletWorkflow
所有已实现的接口:
Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig

public class ServletWorkflow extends javax.servlet.http.HttpServlet
作者:
Administrator
另请参阅:
  • 构造器概要

    构造器
    构造器
    说明
     
  • 方法概要

    修饰符和类型
    方法
    说明
    void
     
    void
    doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
    The doGet method of the servlet.
    void
    doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
    The doPost method of the servlet.
    Returns information about the servlet, such as author, version, and copyright.
    void
    Initialization of the servlet.

    从类继承的方法 javax.servlet.http.HttpServlet

    doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, service

    从类继承的方法 javax.servlet.GenericServlet

    getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletName, init, log, log

    从类继承的方法 java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • 构造器详细资料

    • ServletWorkflow

      public ServletWorkflow()
  • 方法详细资料

    • destroy

      public void destroy()
      指定者:
      destroy 在接口中 javax.servlet.Servlet
      覆盖:
      destroy 在类中 javax.servlet.GenericServlet
    • doGet

      public void doGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
      The doGet method of the servlet.
      This method is called when a form has its tag value method equals to get.
      覆盖:
      doGet 在类中 javax.servlet.http.HttpServlet
      参数:
      request - the request send by the client to the server
      response - the response send by the server to the client
      抛出:
      javax.servlet.ServletException - if an error occurred
      IOException - if an error occurred
    • doPost

      public void doPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response) throws javax.servlet.ServletException, IOException
      The doPost method of the servlet.
      This method is called when a form has its tag value method equals to post.
      覆盖:
      doPost 在类中 javax.servlet.http.HttpServlet
      参数:
      request - the request send by the client to the server
      response - the response send by the server to the client
      抛出:
      javax.servlet.ServletException - if an error occurred
      IOException - if an error occurred
    • getServletInfo

      public String getServletInfo()
      Returns information about the servlet, such as author, version, and copyright.
      指定者:
      getServletInfo 在接口中 javax.servlet.Servlet
      覆盖:
      getServletInfo 在类中 javax.servlet.GenericServlet
      返回:
      String information about this servlet
    • init

      public void init() throws javax.servlet.ServletException
      Initialization of the servlet.
      覆盖:
      init 在类中 javax.servlet.GenericServlet
      抛出:
      javax.servlet.ServletException - if an error occurs