Are there any good examples or can you provide some insight in how to handle a multipage form.
Are there any good examples or can you provide some insight in how to handle a multipage form.
Look at: org.springframework.web.servlet.mvc.AbstractWizard FormController
nothing special about them just store your command object in session. the rest is no different except for validation (you will need to take care of not validating the fields that were not shown to the user yet)Originally Posted by javaprof
Thanks,
Alex.