jsp如何像Servlet生命周期一样调用jspInit和jspDestroy?

jsp也有自己的生命周期和Servlet一样:
<%@ page contentType="text/html; charset=GBK"%>
<html>
<body>
    <h1>JSP</h1>
    <%!
    public void jspInit() {
        System.out.println("init");
    }

    public void jspDestroy() {
        System.out.println("destroy");
    }%>
    <%
        System.out.println("doGet");
    %>
</body>
</html>

一种执行destroy的方法:随便改动一个java文件,一保存,应用程序被重新加载,过去的应用被卸载,于是destroy被执行。



更多内容请见原文,文章转载自:https://blog.csdn.net/qq_44594371/article/details/103176228

上一篇:Redis如何处理客户端连接


下一篇:Apache Kylin权威指南1.1 背景和历史