How Struts internally works?
For Example if we type the URL "/login.do" how the process
goes internaly? How the struts-config.xml loaded?



How Struts internally works? For Example if we type the URL "/login.do" how the process ..

Answer / narendra kakumanu

Struts-Flow:-

* Whenever we deploy the application into the server it reads the web.xml file and finds the load on startup for action servlet the action servlet object will be created and init method will be invoked.

* struts-config.xml is one of the init parameter of the action servlet so it will read the struts-config.xml at the time of deployment because of load on startup.
* now everything is loaded and ready to serve.

* whenever user sends a request it goes to the web.xml file checks the url-pattern and it matched it will take servlet dummy name and checks with the servlet name and it will invoke action servlet object.

* srtuts-config.xml is one of the init parameter of the action servlet it will delegate the same request to the struts-config.xml.

* In struts-config.xml file it will check the action tag path attribute it will matched take the action name and check with the respective form bean name and creates the form bean object and all the requested parameters are populated into the form bean object.

* Controller come back to the action tag and check the validate attribute either true or false by default it is true if it is true it will perform the validation on the form bean object.

* validate method return type is action errors .

* if validations are true it will return null so that time it will create action class object and invoke the execute method.

* if validations are failed it will return action errors to respective page which is configured in input attribute.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Struts Interview Questions

kindly can any one post for me portlet,hibernate,spring example code and configuration,and some related tutorials plz its urgent for me....thanks in advance ............

1 Answers  


How to create validations?what are struts validation components?

2 Answers  


How Struts internally works? For Example if we type the URL "/login.do" how the process goes internaly? How the struts-config.xml loaded?

1 Answers   Allied Digital,


What is the front controller in struts2?

0 Answers  


What is the purpose of @results annotation?

0 Answers  






Can u call Action class methods fro struts-config.xml file?

2 Answers   iGate,


What is controller in struts2?

0 Answers  


What are the reasons for an error message not being displayed while developing struts application?

0 Answers  


Why actionservlet is singleton in struts?

0 Answers  


What is the use of resourcebundle.properties file in Struts Validation framework?

0 Answers  


What is action class?

0 Answers  


How display data base errors on web console by using the Struts Framework?

2 Answers  


Categories