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
What is the difference between validation.xml and validator-rules.xml files in struts?
Name some of the features of struts2?
What is the purpose of execute() method?
What is the role of action class in struts?
In which method of action class the business logic is executed?
What is request processor and how does it relates to action mapping?
What are the two different types of validations that the validator framework supports?
What are result types in struts?
Explain about logic match tag?
List some struts tag libraries?
How long do struts last?
What is the default suffix for struts2 action uri ?
What is controller in struts2?
What configuration files are used in struts?
Can we have more than one struts-config.xml file for a single struts application?