Answer Posted / guest
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 ? | 16 Yes | 1 No |
Post New Answer View All Answers
What is the form of storage space in java?
What are various types of class loaders used by jvm?
What does module-relative mean?
Explain how will the struts know which action class to call when you submit a form?
What is JTS?
What is the difference between RMI registry and OS Agent?
How database connectivity in XML is achieved?
What is a class loader?
What is a session? Can you share a session object between different theads?
Why use POJO when I can use hashmap
What is a tasks priority and how is it used in scheduling?
When a thread blocks on i/o, what state does it enter?
Can you control when passivation occurs?
Can I run seam outside of jboss as?
What value does read() return when it has reached the end of a file?