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
Why are frameworks used?
List the important attribute and elements of action mapping under struts.
Can we have more than one struts-config.xml file for a single struts application?
Where should struts xml be placed?
Explain about the library tag?
How we can install struts?
How many struts config file in a struts application?
How to get data from the velocity page in a action class?
What is a custom tag?
Explain the difference between plain-validator and field-validator in struts?
How you will enable front-end validation based on the xml in validation.xml?
What are the classes used as part of struts framework ?
What is switchaction?
Can you explain value stack?
Explain struts?