类 FineelyConfigServlet

  • 所有已实现的接口:
    java.io.Serializable, javax.servlet.Servlet, javax.servlet.ServletConfig

    public class FineelyConfigServlet
    extends javax.servlet.http.HttpServlet
    Processing requests for configuration classes

    /get[className] and /update[className]

    从以下版本开始:
    0.0.1
    另请参阅:
    ConfigSupport, EnableAutoConfigScan, 序列化表格
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      void doGet​(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)  
      void doPost​(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)  
      void init​(javax.servlet.ServletConfig config)
      Init configIntermediary by webApplicationContext Called by the servlet container to indicate to a servlet that the servlet is being placed into service.
      • 从类继承的方法 javax.servlet.http.HttpServlet

        doDelete, doHead, doOptions, doPut, doTrace, getLastModified, service, 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
    • 构造器详细资料

      • FineelyConfigServlet

        public FineelyConfigServlet()
    • 方法详细资料

      • init

        public void init​(javax.servlet.ServletConfig config)
                  throws javax.servlet.ServletException
        Init configIntermediary by webApplicationContext Called by the servlet container to indicate to a servlet that the servlet is being placed into service. See Servlet.init(javax.servlet.ServletConfig).

        This implementation stores the ServletConfig object it receives from the servlet container for later use. When overriding this form of the method, call super.init(config).

        指定者:
        init 在接口中 javax.servlet.Servlet
        覆盖:
        init 在类中 javax.servlet.GenericServlet
        参数:
        config - the ServletConfig object that contains configuration information for this servlet
        抛出:
        javax.servlet.ServletException - if an exception occurs that interrupts the servlet's normal operation
        另请参阅:
        UnavailableException
      • doGet

        public void doGet​(javax.servlet.http.HttpServletRequest request,
                          javax.servlet.http.HttpServletResponse response)
                   throws java.io.IOException
        覆盖:
        doGet 在类中 javax.servlet.http.HttpServlet
        抛出:
        java.io.IOException
      • doPost

        public void doPost​(javax.servlet.http.HttpServletRequest request,
                           javax.servlet.http.HttpServletResponse response)
                    throws java.io.IOException
        覆盖:
        doPost 在类中 javax.servlet.http.HttpServlet
        抛出:
        java.io.IOException