Question about Spring Binding
Hi All,
I just want to know that in a page having a form we have to do binding using tags like <spring:bind path="loginCommand"> and so on. Is it possible that the binding of form could be done automatticaly with the command object e.g. using the name of the control. For example a text field with name = "user" could be binded to loginCommand.user without the use <spring:bind> tag. This is exactly what is done by ActionForm in struts where ActionForm is populated from html form using naming convention. If it is possible please guide me how to do it?