What is servlet preinitialization?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
Will it be called overriding if I do not change the parameters or return type, instead throw a different exception in the method signature.
Define the remote object implementation?
What is the purpose of the notifyall() method?
What is colon_pkg_prefixes and what is its use?
how the mapping can be done from jsp to actionservlet?
What happens when we invoke a thread?s interrupt method while it is in sleeping or waiting condition?
What is jboss?
suppose i open my yahoo mail.then copy the url. then sign out & close browser.then open browser paste that url on the browser.will i get my mail opened or not? i know it ill not.but how it work.how i create like this type of secure site?
What are the purpose of introspection?
what are the activation groupworks?
To identify IDL language what mapping mechanism is used?
What is the diffrence between a local-tx-datasource and a xa-datasource?