Which method is necessary for Action class?
-
valuator()
-
reset()
-
findForward()
-
execute()
D
Correct answer
Explanation
The execute() method is the core method that every Action class must implement. It handles the request processing logic and returns an ActionForward that determines the view to display. Other methods like reset() belong to ActionForm, and findForward() is called ON an ActionMapping, not implemented BY Action.