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
Explain the core end goal while using java struts?
What is actioncontext?
What do you mean by actionmapping?
What is controller in struts ?
What is struts2 framework?
How can duplicate form submission be handled in struts 2?
Name some useful annotations introduced in Struts2?
What is the use of reset method of ActionForm class?
What does validation interceptor?
Are the struts tags xhtml compliant ?
What is Custom Type Converter in Struts2?
Explain about struts relation to html tags?
Are struts thread safe?
In struts, how can we access java beans and their properties?
What is the difference in using Action interface and ActionSupport class for our action classes, which one you would prefer?