What happens, when client requests for server object, which
is not yet loaded into the memory?
Answers were Sorted based on User's Feedback
Answer / nagaraju
u will get 404 error means unavailable Exception
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / sandeep m
when a class is not yet loaded by server. If the server is
receiving the request for such class for the first time
then it loads the class instantiates and serves the
request. All this process takes time and request processing
of first request for that class is delayed. Further
requests for the class will be processed fast.
| Is This Answer Correct ? | 0 Yes | 2 No |
What are the common methods that are included in the http servlet class?
What is webservlet?
Which interface must be implemented by all servlets?
What do you mean by httpservlet?
What is servlet and its life cycle?
when the several requests comes to server..how it manage the requests
Explain jsessionid?
What is meant by session? Tell me something about httpsession class?
How to notify an object in session when session is invalidated or timed-out?
What are the classes and interfaces for servlets?
What is difference between get and post method?
Whether we can get deadlock situation in servlets?