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 is interceptor in Struts2?
Explain about the
Is Struts Framework part of J2EE?
What is a custom tag?
Are interceptors and filters different?
What is token used for?
What is java struts?
What are the ways in which duplicate form submission can occur?
What is the procedure of operation of a form tag?
Why was reload removed from struts (since 1.1)?
What is the purpose of @requiredstringvalidator?
What are the differences between http direct and http indirect?
What’s the difference between validation.xml and validator-rules.xml files in struts validation framework?
Explain the complete struts validator framework.
What is the purpose of @after?