How to explain struts work flow
Answer Posted / jayachender
When we send the request the follwing actions will be perform.
1.The Server Searches for Deployment-Descriptor(web.xml)
2.If the server Found <load-on-startup> tag the server will create the required Servelet Object.
3.After Servlet object is created the server will execute the init() method of ActionServlet.
4.As part of init method of ActionServlet finds the value of Config init parameter.
5.The init() method start reading contents from the struts-config.xml(Struts Configuration file) and store the information in jvm's Memorey
| Is This Answer Correct ? | 21 Yes | 8 No |
Post New Answer View All Answers
What are the steps involved in creating a strut application?
What are the 5 constants of action interface?
What are the core classes of the struts framework?
Are struts thread safe?
How do I access token?
How is forward action used for integration?
How exceptions are handled in struts application?
Which interceptor is responsible for i18n support?
How client side validation is enabled on a jsp form?
What is the purpose of '@customvalidator'?
What is dispatchaction?
What are the different kinds of actions in struts?
What is the purpose of @result?
What is the purpose of @after?
What is container struts2?