What is servlet preinitialization?

Answers were Sorted based on User's Feedback



What is servlet preinitialization?..

Answer / 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

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 preinitialization?..

Answer / sreekanth madamanchi

Servlet can loaded in servlet container of web or
application server at the time of first request sent to
that servlet.
If we want to preinitialized the servlet by using <load-on-
startup> tag(Aritten in web.xml). If we use that tag,
servlet is intialized at the time of server start.

Is This Answer Correct ?    7 Yes 0 No

Post New Answer

More Advanced Java Interview Questions

how the action can be map from jsp page to bean class in mvc1

1 Answers   Photon,


How to do registration form using struts and hibernate?

1 Answers  


How do you download stubs from a Remote place?

1 Answers  


Tell me about Firewalls in RMI?

0 Answers  


What is the difference between RMI registry and OS Agent?

0 Answers  






What is the return type of interrupt method?

2 Answers  


Is System.err.println(""Statement"); is execute the output on console . Example: System.err.println("Hello JAVA");

8 Answers  


Difference between loadclass and class.forname?

0 Answers  


What is the applet sandbox?

1 Answers  


what are memory considerations of jsp compares to other web components?

0 Answers   TCS,


whats is mean by filter?

1 Answers   SolutionNET,


which of the following authentication is stronger than the others? a. Http Basic b. Http DIGEST c. Form based

1 Answers  


Categories