how a servlet is instantiated, whether the container calls
init() or by calling any other method? please somebody reply..
Answer Posted / nishidh soni
Servlet is initialized by two ways...
1)By initializing the constructor:-but in the initial version of JDK 1.0 constructor can not be initialized for the dynamic page loading so that init() method for the servlet comes into the picture.
2)By invoking the init() method:-This init() method is invoked by the servlet container at it is invoked once per servlet and it uses the ServletConfig as a object for the initialized parameter.and the it is like
init(ServletConfig config)
{
.....
}
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
How do you deal property files in servlet?
Why the concept of single thread model interface is used?
What are the uses of servlet and what is servlet chaining?
What are the advantages of servlets over traditional cgi?
Difference between get and post in java servlets?
What are the types of servlet?
What is meant by a web application
What is Client-Server Computing?
How can we include static files in the jsp page?
What are the steps that are required to handle the multi-threading?
When should you prefer to use doget() over dopost()?
How can we refresh automatically when new data is entered into the database?
What is MIME Type?
What is called Scriptlet?
What do you mean by scope object and what are its types?