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 |
Java is fully object oriented languages or not?
How would you reatach detached objects to a session when the same object has already been loaded into the session?
When a thread terminates its processing, it enters into what state?
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!
Why do I get a duplicate name error when loading a jar file?
What are the benefits of detached objects?
Describe responsibilities of Activator?
why static class in java
What’s jboss jbpm?
What is aop(assepct oriented programing)?
What modifiers may be used with an interface declaration?
In connection pool,when 100 clients are requesting, in pool 100 objects is there, when another client is making request how it will work