关于javax.servlet.Servlet接口的init方法和destroy方法

1>接口中的定义

 void init(ServletConfig config) throws ServletException;

 void destroy();

 

 反编译tomcat ,lib目录 中的servlet-api.jar中的GenericServlet后得到

public abstract class GenericServlet

  implements Servlet, ServletConfig, Serializable

{

  private transient ServletConfig config;

 

  public void destroy()

  {

  }

 

  public String getInitParameter(String name)

  {

    return getServletConfig().getInitParameter(name);

  }

 

  public Enumeration getInitParameterNames()

  {

    return getServletConfig().getInitParameterNames();

  }

 

  public ServletConfig getServletConfig()

  {

    return this.config;

  }

 

  public ServletContext getServletContext()

  {

    return getServletConfig().getServletContext();

  }

 

  public String getServletInfo()

  {

    return "";

  }

 

  public void init(ServletConfig config)

    throws ServletException

  {

    this.config = config;

    init();

  }

 

  public void init()

    throws ServletException

  {

  }

 

  public void log(String msg)

  {

    getServletContext().log(getServletName() + ": " + msg);

  }

 

  public void log(String message, Throwable t)

  {

    getServletContext().log(getServletName() + ": " + message, t);

  }

 

  public abstract void service(ServletRequest paramServletRequest, ServletResponse paramServletResponse)

    throws ServletException, IOException;

 

  public String getServletName()

  {

    return this.config.getServletName();

  }

}

 

2>实际运行过程

   你自己写一个类继承了HttpServlet,容器会在初始化你这个servlet时,先实例化一个实现了ServletConfig接口的类的实例,然后

调用GenericServlet的init(ServletConfig config)方法,这时,这个带参数的方法利用传入的config参数完成它implements ServletConfig接口的功能.然后再调用你覆写的无参的init()方法.-----这里是典型的多态运用

3>一个实际的例子

 假设你的web.xml文件中相关servlet这样配置

<servlet>

        <servlet-name>

            counter

        </servlet-name>

        <servlet-class>

            InitCounter

        </servlet-class>

        <init-param>

            <param-name>

                initial

            </param-name>

            <param-value>

                1000

            </param-value>

            <description>

                The initial value for the counter  <!-- optional -->

            </description>

        </init-param>

    </servlet>

  你就可以在init()方法中得到web.xml中的配置

public void init() throws ServletException{

 

 String initial = getInitParameter("initial");

    try {

      count = Integer.parseInt(initial);

    }

    catch (NumberFormatException e) {

      count = 0;

    }

}

  4>总结

你在代码中覆写的是无参数的init()方法 这个方法是在GenericServlet中定义的,你不用overriding 有参的在Servlet接口中定义的方法. 

从servlet 2.1开始就是这样了

而GenericServlet中实现了Servlet接口中的destroy()方法,这只是 一个空方法


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值