when the scope is request,the values of formbean would be available for the current request.
when the scope is session,the values of formbean would be available throughout the session
In the execute() method of Action class the business logic is executed.
public ActionForward execute( ActionMapping mapping, ActionForm form, HttpServletRequest req, HttpServletResponse res) throws Exception ;
execute() method of Action class:
Perform the processing required to deal with this request
Update the server-side objects (Scope variables) that will be used to create the next […]