Answer Posted / avani
Struts will create a single instance of the Action and
allow multiple threads to invoke execute(). This allows for
faster request processing, as the framework is not
continually creating new Action instances to handle each
request. But because a single object is shared between
multiple threads, you must observe proper threading
considerations, as other threads are likely to pummel
instance variables that hold state in the action.
| Is This Answer Correct ? | 10 Yes | 2 No |
Post New Answer View All Answers
What’s the difference between struts and turbine?
What is struts and why it is used?
Explain about the process of functioning of the struts program?
How action-mapping tag is used for request forwarding in struts configuration file?
What are the sections into which a strut configuration file can be divided?
Can you explain struts validator framework?
Are interceptors and filters different?
What is the purpose of @results annotation?
What validate() and reset() method does ?
What is struts actionmapping?
What are action errors and error and what are the consequences they impose?
Explain design patterns which is used in struts?
What is struts xml?
What are the core classes of struts framework? Explain
Describe the basic steps used to create a tiles application?