|
Answer» The JSP LIFECYCLE METHODS are as following: - jspInit() : It OPERATES to initialize the servlet instance. Before CALLING any other method, its call is made.
- _jspService() : It passes the request and the response subjects. You can’t override the method.
- jspDestroy(): The container calls this when its instance is about to DESTROY.
|