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
What is the purpose of @before?
What is the differences between struts1 and struts2?
How does struts2 token work?
What is the purpose of @after?
What is value stack?
Describe the mvc on struts?
What is the purpose of @requiredstringvalidator?
What is the role of action class in struts?
How does one create an action in struts 2?
What is the use of forwardaction?
What are the steps used to setup dispatch action?
What is java struts?
Explain about tiles?
What is the difference between empty default namespace and root namespace?
What is DynaActionForm?