Answer Posted / pradeep c
the flow execution of struts.
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 ? | 76 Yes | 29 No |
Post New Answer View All Answers
how to develop the submit and search operations in single jsp using struts?
What are the core classes of struts framework? Explain
What is the difference between requestaware and servletrequestaware interface?
What do you mean by actionservlet?
What are the conditions for actionform to work correctly?
What is action class? What are the types of action class?
Why are frameworks used?
What kind of mvc is struts 2?
How do you find the struts version being used in a project?
What is struts actionmapping?
What validate() and reset() method does ?
How can we work with error tags?
What is interceptor in Struts2?
What are the steps used to setup dispatch action?
Why do we need struts?