What happens when Two users requests for same action class?
How the threads are controlled?
Answer Posted / rk
I do not see a single correct answer.
In Struts1, Action resources must be thread-safe or
synchronized. So Actions are singletons and thread-safe,
there should only be one instance of a class to handle all
requests for that Action. The singleton strategy places
restrictions on what can be done with Struts1 Actions and
requires extra care to develop.
However in case of Struts 2, Action objects are instantiated
for each request, so there are no thread-safety issues. (In
practice, servlet containers generate many throw-away
objects per request, and one more object does not impose a
performance penalty or impact garbage collection.)
reference:
http://www.javabeat.net/qna/690-struts-1x-vs-struts-20/
| Is This Answer Correct ? | 10 Yes | 0 No |
Post New Answer View All Answers
Explain about the future of struts?
How to explain Software Bank Loan descriptions
What are the features of struts?
What is meant by custom tags?
What is the purpose of @element annotation annotation?
Difference between struts and spring? Or why use spring, if you are already using struts?
What are the major differences between html tags and strut specific html tags?
Which servlet does the struts framework use?
Is struts mvc framework?
What are the struts2 error message keys that can come during file uploading process?
Is Struts Framework part of J2EE?
How is token generated?
What are the features of struts 2?
What is the purpose of struts.xml in struct2?
Explain the difference between plain-validator and field-validator in struts?