how handle when client send multiple request at atime for
multiple servlets servlets?
Answers were Sorted based on User's Feedback
Answer / chandra
when client sends multiple requests to servlet instance each
thread will run in its own service
| Is This Answer Correct ? | 12 Yes | 1 No |
Answer / shinde
use a session and a token, and pass the parameter using a hidden method.when the first request reaches the server store the token in a global variable.If a duplicate request comes, validate using the token form the global variable and discard the duplicate one.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / susan
If th question based MVC-Struts,then to handle multiple
request we can use dispatch action
| Is This Answer Correct ? | 3 Yes | 5 No |
What is the purpose of @beforeresult?
Explain architecture of struts2?
Are interceptors thread safe?
Why use struts framework in java?
kindly can any one post for me portlet,hibernate,spring example code and configuration,and some related tutorials plz its urgent for me....thanks in advance ............
List the important attribute and elements of action mapping under struts.
Briefly tell the two kinds of form beans.
Do I have to credit struts on my own website?
how handle when client send multiple request at atime for multiple servlets servlets?
What is actioninvocation?
How we can configured action mapping in struts?
when we enter the data in the form how it is stored in formbean class setter and getter methods?