JSP pages are translated into servlets with specific lifecycle methods. jspInit() is called once when the JSP is initialized, _jspService() handles each request (equivalent to service()), and jspDestroy() is called before removal. The servlet methods init(), service(), destroy() are the underlying servlet equivalents, not the JSP-specific names.