life cycle of struts?
Answer Posted / r4avindhar
User clicks on a link in an HTML page
Servlet controller receives the request, looks up mapping information in struts-config.xml, and routes to an action.
Action makes a call to a Model layer service.
Service makes a call to the Data layer (database) and the requested data is returned.
Service returns to the action.
Action forwards to a View resource (JSP page)
Servlet looks up the mapping for the requested resource and forwards to the appropriate JSP page.
JSP file is invoked and sent to the browser as HTML.
User is presented with a new HTML page in a web browser.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is struts?
What is the purpose of @conversion annotation annotation?
How do u provide security to ur project?(Banking domain project)
How we can install struts?
What is token used for?
how to connect from struts to database through hibernet and where u can modify the class
Name some useful annotations introduced in Struts2?
Explain about struts dispatch action?
What configuration changes are required to use resource files in Struts?
What is action servlet in struts?
Is struts efficient?
What is the use of jsonvalidation in struts?
How we can controlled duplicate form submission in struts?
Explain about struts relation to html tags?
What is lookupdispatchaction?