what is the purpose of action servlet and action?

Answers were Sorted based on User's Feedback



what is the purpose of action servlet and action?..

Answer / arun prasanth

Action Servlet is backbone of struts Framework.It is the
main ControllerComponent
Action class contain userlogic .It return the next View
to the Framework

Is This Answer Correct ?    17 Yes 5 No

what is the purpose of action servlet and action?..

Answer / cokekrish

The class org.apache.struts.action.ActionServlet is called
ActionServlet.This class plays the role of controller. All
the requests to the server goes thorugh the controller. It
is responsible for handling all the requests.

Action is part of Model. The purupose of Actionclass is to
translate the HttpServletRequest to the business logic. To
use Action we need to subclass and overwrite the execute()
method. all database and business processing are done here.

Is This Answer Correct ?    17 Yes 5 No

what is the purpose of action servlet and action?..

Answer / k@r/\/@d

Most of whats said is correct...

The class org.apache.struts.action.ActionServlet is called
ActionServlet.This class plays the role of controller. All
the requests to the server goes thorugh the controller. It
is responsible for handling all the requests.


----> (Action is part of Model.) --> Its still a part of
controller as it directs you to the appropriate business
processor class (which is a part of model).

The purupose of Actionclass is to
translate the HttpServletRequest to the business logic. To
use Action we need to subclass and over(RID)e the execute()
method.

all database and business processing are done here. -->
These CAN be done here, but shouldn't as it would defeat the
purpose of having a seperate Model layer i.e. Business
Layer. The request must be directed to a business class
which would process the request, perform the neccesary
Database operations if any, wrap the response in a response
object and send it back to the action class to be directed
to the next view by means of mapping.findForward...

Thats my take on this...

Is This Answer Correct ?    6 Yes 3 No

what is the purpose of action servlet and action?..

Answer / pkr_reddy

action servlet is responsible to identify the request and
receive the request.this is initial starting point to the
communication and justify the purpose of the communication
across the diff environments.
org.apachi.struts.action.actionsevlet;

action classes is define to be the user.it is controller
where we provide the user defined controller logical
transactions which allways listen to actionservlet.

Is This Answer Correct ?    9 Yes 7 No

what is the purpose of action servlet and action?..

Answer / venu

ActionServlet is the builtin servlet. ActionServlet nothing
but a controller.ActionServlet provided by the struts
Framework.ActionServlet having the following inbuilt design
patterens.
1 singleton designpatteren.
2.FrontController
3.ApplicationController
4.MVC
5.Data Transfer object/value object
6.Inversion of controll/Dependency injection

ActionServlet take the multiple request but it creats
single instance for that requests by using singleton
designpatteren.

Is This Answer Correct ?    6 Yes 4 No

Post New Answer

More Struts Interview Questions

Explain how can we upload files in struts2 application?

0 Answers  


Where should struts xml be placed?

0 Answers  


what is ForwardAction and IncludeAction in struts?

3 Answers   Mind Tree, Satyam,


we have 7 jsp pages .At last page we have a submit button when we click it it will store all jsps data which we provide will store into database. when we starting providing data in jsp pages when we are at 3rd jsp at that time sessions timeout where the data will be store which we r provide in last two jsps?

2 Answers  


Describe validate() and reset() methods.

0 Answers  






How do you customize ActionServlet?

3 Answers   Ness Technologies,


State the procedure for using forward attribute of link tag’s.

0 Answers  


What is use of i18n interceptor?

0 Answers  


Is it possible to create mulitple instance of one Action Class in struts?

10 Answers   Satyam,


wat happen when the connection is nt closed in jdbc n what vl happen when i interchange in executequery n execute statements

2 Answers  


For a single Struts application, can we have multiple struts-config.xml files?

0 Answers  


How Struts will follow the MVC?

6 Answers   HCL,


Categories