explain the Struts flow?

Answers were Sorted based on User's Feedback



explain the Struts flow?..

Answer / farheen

1.When the user performs an action on the Web application,
the Web browser sends a request for some resource to the
Web server.

2.The request is received by the servlet filter dispatcher,
which looks at the request and determines the appropriate
Action to be invoked to serve it.

3.The set of interceptors configured for applying some
common functionality to the request -- validation,
workflow, or file upload, for instance -- are automatically
applied to the request before the Action is executed.

4.A new instance of the Action class is created and then
the action method is executed for storing or retrieving
information to or from a database.

5.The output -- be it HTML, images, PDF, or in some other
format -- is rendered by the result.

6.Then the request traverses through the interceptors in
the reverse order. The returning request allows for the
performance of additional processing or clean-up
operations.

7.Finally, the container sends the output to the browser

Is This Answer Correct ?    14 Yes 3 No

explain the Struts flow?..

Answer / sitaram

suppose one jsp page having two text fields and one button.
when ever submit the form. the request goes to action
servlet & then loads the struts-config.xml after check the
request where exactly match the action class in the sc.xml.
then executes the action class & executes validate form bean
then execute method and redirects view form.

Is This Answer Correct ?    10 Yes 1 No

explain the Struts flow?..

Answer / me

struts1.3 flow
1) A request comes in from a Java Server Page into the
ActionServlet.
2) The ActionServlet having already read the
struts-config.xml file, knows which form bean
relates to this JSP, and delegates work to the validate
method of that form bean.
3) The form bean performs the validate method to determine
if all required fields have been entered, and performs
whatever other types of field validations that need to be
performed.
4) If any required field has not been entered, or any field
does not pass validation, the form bean generates
ActionErrors, and after checking all fields returns back to
the ActionServlet.
5) The ActionServlet checks the ActionErrors that were
returned from the form bean’s validate method to determine
if any errors have occurred. If errors have occurred, it
returns to the originating JSP displaying the appropriate
errors.
6) If no errors occurred in the validate method of the form
bean, the ActionServlet passes control to the appropriate
Action class.
7) The Action class performs any necessary business logic,
and then forwards to the next appropriate action (probably
another JSP).

Is This Answer Correct ?    2 Yes 1 No

explain the Struts flow?..

Answer / santosh kumar

->when ur submit the form page ,ActionServlet will take the
request and check is there any action mapping with specified
saction url , if it there AS pics the name of the form
create the object for FormBean class and call its
getter,reset ,validate methods
->After validate() AS picks the action mapping type value
and create the action class and calls the execute() of
action class
->if execute return null value, AS will terminate the execution
->else AS takes the return value and send the request to
return value

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Struts Interview Questions

Does apache tomcat use struts?

0 Answers  


How can we write our own interceptor and map it for action?

0 Answers  


Does struts include its own unit tests?

0 Answers  


What are the loop holes of struts?

0 Answers  


is it possible to see actionservlet in my system. if yes how

5 Answers  






What’s the difference between struts and turbine? What’s the difference between struts and espresso?

0 Answers  


How do I access token?

0 Answers  


1.when actionservelet execute. 2.when web.xml executes

3 Answers  


What is the difference between shocks and struts?

0 Answers  


what are the actions in struts?

10 Answers   Nihilent, Wipro,


What is the use of reset method of ActionForm class?

0 Answers  


How to set email notification using struts.Plz give the example code?

5 Answers   HCL,


Categories