servlet生命周期中,destroy()是销毁,请教destroy()的代码是什么

servlet生命周期中,destroy()是销毁,请问destroy()的代码是什么
servlet生命周期中,destroy()是销毁,请问destroy()的代码是什么

------解决方案--------------------
探讨

引用:

引用:

引用:

public abstract interface Servlet
{
public abstract void destroy();
}

public abstract class GenericServlet
implements Servlet, ServletConfig, Se……