In my struts application i want to pass the null value to the mapping.findForward('null') the reason to do this is that i do not want to call any jsp page
More details
public ActionForward saveSurveyTakersDetails(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception
{
// something
return mapping.findForward(null);
}
Is it is valid to pass null at findForward parameter.. Please answer thanks