how handle when client send multiple request at atime for
single servlet
Answers were Sorted based on User's Feedback
Answer / abdul hameed
Servlets is Dynamically Loaded into the memory only once
then It is handeled by Thread, for each Client there will
be a Thread, and Service method will be called for each
Request, so its meaningles that a client is sending a
single request or multiple request
| Is This Answer Correct ? | 29 Yes | 3 No |
Answer / sunil kumar yadav
As Servlets are multithreaded by default , so whenever any
client request comes to any servlet immediatly that servlet
instance create one indepndent thread to handle that
request.And like that it handles 100's of request, But
after one time instace if client request goes very high
then container creats another instance for the same servlet
to handle more requests
| Is This Answer Correct ? | 16 Yes | 1 No |
Answer / suryaprakash
well i agree with u all
but i found a problem in my application
i created web based chat application
when any of the two clients enter to hit the servlet at the
same time
it is skipping one request
and within the two requests it will process only one of the
request
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / srinivasa
By making a servlet Thread safe object we can achieve .For
this servlet needs to implement singlethreadmodel interface
| Is This Answer Correct ? | 5 Yes | 8 No |
Answer / srinivas from inetsolv
By declaring printwriter objetct as an local variabel to the
service method.Doing like this every thread will hava a
seperate copy of printwriter object on its stack
space.Hence there is no problem for even though when we
have multiple requests for at a time for same servlet.
| Is This Answer Correct ? | 10 Yes | 14 No |
Why are springs better than struts?
What are the important methods of actionform?
What are pull and push mvc architecture and which architecture does struts2 follow?
Is Struts Framework part of J2EE?
Mark the differences between html tags and strut specific html tags.
What is the purpose of form-beans tag in struct-config.xml?
How does interceptor work in struts2?
we have 7 jsp pages .At last page we have a submit button when we click it it will store all jsps data which we provide will store into database. when we starting providing data in jsp pages when we are at 3rd jsp at that time sessions timeout where the data will be store which we r provide in last two jsps?
What do you mean by tiles in struts?
Can we write Structs application without using Action Class directly or indirectly(extends Action class)
Will the struts tags support other markup languages such as wml ?
What does modeldriven interceptor?