Answer Posted / shakir khan
javax.servlet.Servlet interface defines 3 methods known as
life cycle.
Servlet intialisation takesplace every first time,it
receives a request and remains in memory till times out or
server shutdown
When first request came in for a servlet,servlet invoke
init() only once.
public void init(ServletConfig config)
{
}
Thereafter if any user wants requet,it will directly
executes the service().
public void service(ServletRequest req,ServletResponse res)
throws servletException,IOException
{
}
When server wants to remove the servlet from pool ,it will
executes the destroy().
public void destroy()
{
}
| Is This Answer Correct ? | 14 Yes | 2 No |
Post New Answer View All Answers
Can we use threads in Servlets?
What are the various ways of session supervision in servlets?
What do you mean by a filter and how does it work?
What is httpservlet and how it is different from genericservlet?
Write a command to get actual path of a servlet to the server?
What is servlet and how it works?
How printwriter is different from servletoutputstream?
What is a servlet context?
What is the importance of init() method in Servlet ?
What is the process for chaining servlet?
Given the request path below, which are context path, servlet path and path info?
I have a requirement Here we have a ResultSet object that will contain 50 records i need to print those recors in to a webpage(i.e; view according to MVC architectures that mybe servlet or jsp) . Here i need to print the records 10 per page that is 1 to 10 in page one and 11 to 20 in page two like remaining will be appeared in other pages we need to display those page numbers whenever we click on that page number we will go to that page and display 10 records like we will display 5 pages it is like this << 1 2 3 4 5 next >>
What is called Scriptlet?
What do you mean by chaining in servlet?
What is difference between GenericServlet and HttpServlet?