My Controller has 3 Domain Classes (Models): Department, Sector and Line.
My doubt is how create a form with this 3 models?
In JSP in form with 1 model I have a code like below:
<form:form commandName="department">
And Sector and Line? How to link with this form?
Other question is about form too. Is possible use forms without involving a Model?


Reply With Quote