Answer Posted / santosh kumar
->when ur submit the form page ,ActionServlet will take the
request and check is there any action mapping with specified
saction url , if it there AS pics the name of the form
create the object for FormBean class and call its
getter,reset ,validate methods
->After validate() AS picks the action mapping type value
and create the action class and calls the execute() of
action class
->if execute return null value, AS will terminate the execution
->else AS takes the return value and send the request to
return value
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of action tag in struts.xml?
What is the different actions available in struts?
What is the difference between shocks and struts?
In struts.xml, what does the attribute "method" stands for in the "action" tag?
What is the purpose of @action annotation?
Explain design patterns which is used in struts?
What is the difference between requestaware and servletrequestaware interface?
What configuration changes are required to use resource files in Struts?
What is the difference between forwardaction and includeaction?
Are struts and shocks the same?
What is the difference between validation.xml and validator-rules.xml files in struts?
How exceptions are handled in struts application?
Explain about the
What are result types in struts?
Can I have html form property without associated getter and setter formbean methods?