javax.servlet.Servlet接口中的方法:
public void init(ServletConfig config): 初始化方法
public void service(ServletRequest req, ServletResponse res):服务方法
public void destroy():销毁方法
public ServletConfig getServletConfig():返回当前Servlet的配置信息对象.
public String getServletInfo():该方法返回Servlet的信息(作者,版权等).
Servlet的生命周期方法:
public void init(ServletConfig config):初始化方法,在第一次请求时调用,只在最初的时候调用一次.
public void service(ServletRequest req, ServletResponse res):服务方法
public void destroy():销毁方法
注意:
执行流程: 构造器-->init方法--> 循环[ service方法 ]--->destory方法(正常关闭Tomcat)
1:构造器先执行,创建Servlet对象:init,service,destory方法,都是非static方法,都得使用对象调用.
2:一个Servlet类在整个生命周期中最多只有一个对象.在访问的时候创建
3:init在构造器执行之后,立马执行,只执行一次,为对象做初始化操作.
4:service方法在每次请求都会执行.
5:destroy方法只有在正常关闭Tomcat时,才会执行,不要期望该方法一定执行,不要在该方法编写扫尾操作.
6:Servlet类必须使用public修饰,Servlet的构造器,必须是公共无参数的.原因在下一个知识点.