who will run the execute method in struts?

Answers were Sorted based on User's Feedback



who will run the execute method in struts?..

Answer / devendar rao marru

request processor

Is This Answer Correct ?    13 Yes 1 No

who will run the execute method in struts?..

Answer / sunny goyal

The RequestProcessor instantiates the Action class
specified in the ActionMapping (struts-config.xml) and
invokes the execute() method on the Action instance

Is This Answer Correct ?    8 Yes 0 No

who will run the execute method in struts?..

Answer / ratheeshnellikkal

Action Servlet

Is This Answer Correct ?    11 Yes 5 No

who will run the execute method in struts?..

Answer / vikram naidu

protected ActionForward
processActionPerform(request,response,action,form,mapping)
throws IOException, ServletException {
try {
return (action.execute(mapping, form, request,
response));
} catch (Exception e) {
return (processException(request, response, e,
form, mapping));
}
}

this is the logic used in RequestProcessor class to call the
execute() method through ActionServlet. B'coz ActionServlet
is the front controller class and in this class only we are
calling RequestProcessor class. So ActionSerlvet is calling
execute() method through RequestProcessor class.

Thankyou.

Is This Answer Correct ?    6 Yes 0 No

who will run the execute method in struts?..

Answer / sainath

Request Processor will run the execute() in struts.

Is This Answer Correct ?    5 Yes 0 No

who will run the execute method in struts?..

Answer / bhaskar j

r u sure Ratheeshnellikkal?...

it may be action class i think

Is This Answer Correct ?    7 Yes 3 No

who will run the execute method in struts?..

Answer / sudhir

An Action is an adapter between the contents of an incoming
HTTP request and the corresponding business logic that
should be executed to process this request. The controller
(RequestProcessor) will select an appropriate Action for
each request, create an instance (if necessary), and call
the execute method.

Is This Answer Correct ?    4 Yes 0 No

who will run the execute method in struts?..

Answer / kiran

Action servlet in Request.processor()method will be execute the execute()method

Is This Answer Correct ?    5 Yes 2 No

who will run the execute method in struts?..

Answer / kishore

Request Processor....

Is This Answer Correct ?    2 Yes 0 No

who will run the execute method in struts?..

Answer / raghavendra

ActionServlet is nothing but the struts framework.

The ActionServlet cretaes the formbean object and if
required creates the action class and calls the validate
method(if validate = true in struts-config.xml).

If any errors returned by validate method, it forwards the
request to the resourse specified in input attribute.

If no errors returned by validate method,struts execute the
execute method.

Is This Answer Correct ?    6 Yes 5 No

Post New Answer

More Struts Interview Questions

Are struts thread safe?

0 Answers  


I will explain the scenario now i have a form1 having some fields and i made it extends DynaActionForm. in struts config how can i specify another form form2 which has to extend the form1 please specify is it better to use actionform or dyna action form in applations. is dyna action form is comfortable in declaring form variables of type 'ArrayList<somegenerics>' extend the

0 Answers   Techno Solutions,


How many struts config file can be created in struts?

0 Answers  


struts is thread safe or not ?give me answer as early as possible

5 Answers  


How do you create message resource?

0 Answers  






How you will enable front-end validation based on the xml in validation.xml?

0 Answers  


What are the pros of struts 2?

0 Answers  


what is diffrence between Dynaactionform,actionform and Dynavalidateform

8 Answers   TCS,


How Struts will follow the MVC?

6 Answers   HCL,


In which method of action class the business logic is executed?

0 Answers  


How long do struts last?

0 Answers  


Can we have different controllers in one struts app?

7 Answers   Accenture,


Categories