Answer Posted / sri
The browser makes a request to the Struts application that
is processed by ActionServlet (Controller).
ActionServlet (Controller) populates the ActionForm (View)
object with HTML form data and invokes its validate( )
method.
ActionServlet (Controller) executes the Action object
(Controller).
Action (Controller) interfaces with model components and
prepares data for view.
Action (Controller) forwards control to the JSP (View).
JSP (View) uses model data to generate a response to the
browser.
| Is This Answer Correct ? | 9 Yes | 5 No |
Post New Answer View All Answers
How can we display all validation errors to user on jsp page?
What steps are required to for an application migration from Struts1 to Struts2?
How can we integrate log4j in Struts2 application?
What is the purpose of action-mappings tag in struct-config.xml?
What is the purpose of '@customvalidator'?
Explain architecture of struts2?
How struts control data flow?
What is the purpose of struts.properties in struct2?
How the flow of various requests happens in struts application?
What are the core classes of the struts framework?
How can we write our own interceptor and map it for action?
Name some useful annotations introduced in Struts2?
What is the difference between struts and spring? Explain
Where can I get help with struts?
What is the purpose of @expressionvalidator annotation?