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
Difference between html tags and struts specific html tags
Can explain about the validations and in your project where did u used the validations?
What is the purpose of @beforeresult?
What is role of action class?
Can we use struts and spring together?
What is the use of Struts.xml configuration file?
What is front controller in struts2?
How to override the default error message that can come during file uploading process?
Explain the necessity of empty tag?
What is the use of interceptor?
What is the use of namespace in action mapping in Struts2?
What does apache struts do?
What is apache struts framework?
Are actions thread safe?
What are different ways to create Action classes in Struts2?