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被执行。