Hello,
I have an action file by name ClaimAction and its extends DispatchAction. My question is: after I click submit on the
jsp it comes to the appropriate dispatch action method. In this action method, I want to output its dispatch method. How do I output the dispatch method?
Please let me know. Thanks in advance.
Arun.
Here is the code:
public ActionForward accept(
ActionMapping mapping,
ActionForm form,
HttpServletRequest request,
HttpServletResponse response)
{
System.out.println("The dispatch method is:"+???);
return null;
}