life cycle of struts?
Answer Posted / chandu
The request is given to Action Servlet i.e; doGet or
doPost.
ActionServlet with the help of request uri locates one of
the RequestProcessor and dispatch the request to
RequestProcessor i.e; process method on RequestProcessor is
called InRequestProcessor.
It processes content type.
processes Locale.
processes actionPath.
processes actionMapping.
processes formBean.
processes action.
Error handling.
After processing action(i.e; execute method) depending on
the results locate the path to view(with the help of
ActionMapping) and dispatch the request to the located
path.
| Is This Answer Correct ? | 27 Yes | 12 No |
Post New Answer View All Answers
Can we use struts and spring together?
What’s the difference between validation.xml and validator-rules.xml files in struts validation framework?
When do I need “struts.jar” on my classpath?
What is the purpose of @validations annotation?
Explain about how requests from the client are sent?
What are the features of struts 2?
What is actioncontext?
What is the purpose of @element?
How can we work with error tags?
What's mvc pattern ?
Explain design patterns which is used in struts?
What is the significance of logic tags in Struts?
What are the aware interfaces in struts2?
How can we handle exceptions thrown by application in Struts2?
Does apache tomcat use struts?