Is struts thread safe?
Answers were Sorted based on User's Feedback
Answer / eugene gruzin
Struts is not only thread safe, it is thread dependant.
Struts instansiate each Action only once and allow all
other request to be handled by the same action
| Is This Answer Correct ? | 23 Yes | 8 No |
Answer / 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 |
Answer / naresh
Struts frame work is thread safe onle. we can make a struts
as non thread safe using servlet page as Single thread
model,and jsp using the page attribute isThreadSafe.
| Is This Answer Correct ? | 8 Yes | 18 No |
What is the differnce between 2-tier architecture and 3- tier architecture in java?
How many instances of servlet usually run in a struts application ?
if u r using eclipse tool how can u debbaging u r application? plz explain with sample code
How Struts will follow the MVC?
List some bundled validators?
tell me struts flow ?
5 Answers BA Continnum Solutions, Exira, Fidelity, iGate,
how to connect from struts to database through hibernet and where u can modify the class
What is the purpose of action tag in struts.xml?
What are the steps of struts installation?
how many methods are there in RequestPrccesor class?
What are the core classes of the struts framework?
What’s the utilization of resource bundle properties file in struts validation structure?