Answer Posted / javablossom
struts 1.x is threadsafe and struts 2.x is not thread safe
Reference:
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.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What is struts framework?
What is actioninvocation?
Can we have multiple struts config files in a single web app?
What is struts?
What is the use of web xml in struts2?
How to upload struts file?
Can you give an overview of how a struts application flows?
What is the use of jsonvalidation in struts?
What is the difference between struts1 and struts2?
Is there a particularly good ide to use with struts?
How an actionform bean is created?
How can we get Servlet API Request, Response, HttpSession etc Objects in action classes?
How struts 2 validation works?
What is struts and springs in java?
What is spring and struts in java?