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
Can you explain aware interfaces in struts2?
Are interceptors thread safe?
How we can install struts?
What is difference between interceptors and filters?
Can you explain custom tag?
What are the 5 constants of action interface?
What are apache struts?
Which design pattern is implemented by Struts2 interceptors?
How many struts config file can be created in struts?
Why is it called struts?
State an example of struts configuration file as an action parameter for action servlet.
What is actionservlet?
Can we integrate struts with spring?
Mark the differences between html tags and strut specific html tags.
What are the benefits of Interceptors in Struts2?