Spring Framework

Spring Projects

Spring Project 1

adplus-dvertising
SimpleFormController in Spring MVC
Previous Home Next

This controller provide the facility to configurable form and success views and an onSubmit chain .It's also provide the facility resubmits to the form view in case of validation error and success view.

This controller provide following type of method:

setFormView:

public final void setFormView(String formView)

getFormView:

public final String getFormView()

setSuccessView:

public final void setSuccessView(String successView)

getSuccessView:

public final String getSuccessView() 

showForm:

protected ModelAndView showForm(HttpServletRequest
request,HttpServletResponse response,BindException
errors)throws Exception 

showForm:

protected ModelAndView showForm(HttpServletRequest
request,HttpServletResponse response,BindException
errors,Map controlModel)throws Exception

referenceData:

protected Map referenceData(HttpServletRequest request
,Object command,Errors errors)throws Exception

referenceData:

protected Map referenceData(HttpServletRequest request)
throws Exception

processFormSubmission:

protected ModelAndView processFormSubmission
(HttpServletRequest request,HttpServletResponse,Object
command,BindException errors)throws Exception

suppressValidation:

protected boolean suppressValidation(HttpServletRequest
request)

isFormChangeRequest:

protected boolean isFormChangeRequest(HttpServletRequest
request)

onFormChange:

protected void onFormChange(HttpServletRequest request,
HttpServletResponse response,Object command
,BindException errors)throws Exception

onFormChange:

protected void onFormChange(HttpServletRequest request,
HttpServletResponse response,Object command)
throws Exception

onSubmit:

protected ModelAndView onSubmit(HttpServletRequest
request,HttpServletResponse response,Object command,
BindException errors)throws Exception

onSubmit:

protected ModelAndView onSubmit(Object command,
BindException errors)throws Exception

onSubmit:

protected ModelAndView onSubmit(Object command)
throws Exception

doSubmitAction:

protected void doSubmitAction(Object command)
throws Exception

Example SimpleFormController in Spring MVC

Previous Home Next