What is servlet preinitialization
Answer / surajkumar.java
A servlet is lazily loaded in servlet container of web or
application server. This means, a servlet is not instantiated
or initialized in servlet container as long as it has not been
requested for the first time. A servlet can be preloaded and
preinitialized with the help of <load-on-startup> of web.xml
(deployment descriptor) file.The preloading of a servlet
before any user request is called servlet preinitialization.
| Is This Answer Correct ? | 8 Yes | 0 No |
What is Servlet Filter And What does it work?
What is the initial state, When a thread is created and started?
Where can I ask questions and make suggestions about seam?
when we applied start()method on a thread ,how does it know that to execute run()method on that object?
Tell me about Firewalls in RMI?
How are commas used in the intialization and iteration parts of a for statement?
whats is mean by class.forName() whats the return type of class
What is an abstract method?
What is daemon thread?
What are Benefits of Connection Pooling?
Explain how will the struts know which action class to call when you submit a form?
What is the purpose of the notify() method?