What are the main classes which are used in struts application?


  1. ActionServlet : Its is back-bond of web application. Its a controller class responsible entire request.
  2. Action : Using Action classes all the business logic is developed us call model of the application also.
  3. ActionForm : Action Form class is Java Bean. its mapping between form data to Action.Form's data objects to be auto wiring client form data to server side.
  4. ActionMapping : Its mapping object and Action.
  5. ActionForward : This is getting result and controller to forward destination.

No comments:

Post a Comment