0
3.8kviews
Explain page life cycle of JSP Application
1 Answer
| written 9.7 years ago by |
In life cycle of Java Servlet page (JSP) , there are 3 important methods:
init()
service()
destroy()
When a user enters the url in the the web browser and makes a request, the browser generates the HTTP request and sends it to the web server. Web Server maps this request …