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
Is the session factory thread safe?
In inglish: How to convert jar to exe files? Em português: Como converter arquivos .jar para .exe?
Name the class that is used to bind the server object with RMI Registry?
Explain how will the struts know which action class to call when you submit a form?
Which containers use a border layout as their default layout?
How can I avoid validating a form before data is entered?
the same information whether it will connect to the database or it will be used previous information?
What is the difference between the session.update() method and the session.lock() method?
what is a non-repeatable read?
what are the activation groupworks?
whats is mean by connectionpooling
What is the difference between the session.get() method and the session.load() method?
What is the difference between the font and fontmetrics classes?
How primary key is implemented in Oracle?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!