From spring CVS. First sentence refers to non-existent BindException parameter
/**
* Simplest onSubmit version. Called by the default implementation of the onSubmit
* version with command and BindException parameters.
* <p>This implementation returns null, making the calling onSubmit method perform
* its default rendering of the success view.
* <p>Subclasses can override this to provide custom submission handling that
* just needs the command object.
* @param command form object with request parameters bound onto it
* @return the prepared model and view, or null
* @throws Exception in case of errors
* @see #onSubmit(Object, BindException)
*/
protected ModelAndView onSubmit(Object command) throws Exception {
return null;
}
-Janek
|