|
Hi,
Action class is a the one which will be responsible to handle all your request. Each class which extends the Action will have the method named execute(ActionMapping,ActionForm,HttpServletReques t,HttpServletResponse) and it will return ActionForward. This particular method will get executed for your request.
|