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
How struts control data flow?
Explain about tiles?
Can you give an overview of how a struts application flows?
What is role of action class?
What is struts in j2ee?
What is the purpose of @result annotation?
What is the default location of result pages and how can we change it?
What is xml based validation in struts2?
How do you find the struts version being used in a project?
How does one create an action in struts 2?
For a single Struts application, can we have multiple struts-config.xml files?
Is struts efficient?
What is the purpose of interceptors?
Is struts compatible with other java technologies?
What are the 5 constants of action interface?