类 FineelyConfigServlet
- java.lang.Object
-
- javax.servlet.GenericServlet
-
- javax.servlet.http.HttpServlet
-
- com.fineelyframework.config.FineelyConfigServlet
-
- 所有已实现的接口:
java.io.Serializable,javax.servlet.Servlet,javax.servlet.ServletConfig
public class FineelyConfigServlet extends javax.servlet.http.HttpServletProcessing requests for configuration classes/get[className] and /update[className]
- 从以下版本开始:
- 0.0.1
- 另请参阅:
ConfigSupport,EnableAutoConfigScan, 序列化表格
-
-
构造器概要
构造器 构造器 说明 FineelyConfigServlet()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 voiddoGet(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)voiddoPost(javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)voidinit(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
-
-
-
-
方法详细资料
-
init
public void init(javax.servlet.ServletConfig config) throws javax.servlet.ServletExceptionInit configIntermediary by webApplicationContext Called by the servlet container to indicate to a servlet that the servlet is being placed into service. SeeServlet.init(javax.servlet.ServletConfig).This implementation stores the
ServletConfigobject it receives from the servlet container for later use. When overriding this form of the method, callsuper.init(config).- 指定者:
init在接口中javax.servlet.Servlet- 覆盖:
init在类中javax.servlet.GenericServlet- 参数:
config- theServletConfigobject 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
-
-