Answer Posted / 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 |
Post New Answer View All Answers
How do you find the struts version being used in a project?
Which library is provided by struts for form elements like check boxes, text boxes etc?
What is the difference between struts and spring? Explain
What is the purpose of @conversion annotation annotation?
What is token used for?
What are the action classes in struts?
What is the use of form bean in struts?
What is apache struts vulnerability?
What is the struts in java?
What is used to display the intermediate result in an interceptor?
What is switchaction?
What are the core classes of the struts framework?
Why it called struts?
In which method of action class the business logic is executed?
What does action do in struts?